码迷,mamicode.com
首页 > Web开发 > 详细

html5 css 盒子模型

时间:2015-05-12 13:15:28      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

<body>

 

<div class="container">

<div class="bd">

<div class="pd">

<div class="content">hello</div>

</div>

</div>

</div>

</body>

css 文件

body{
margin: 0px;
}

.container{

margin: 100px;外边框为100px;

}
.bd{

border-style: dotted;外边框样式

}
.pd{
padding: 100px;内边框宽度


}
.content{

background-color: red;内容区间大小设置
width: 100px;
height: 100px;

}

 

html5 css 盒子模型

标签:

原文地址:http://www.cnblogs.com/xiezefeng/p/4496829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!