html5 css 盒子模型

<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;

}

 

posted @ 2015-05-12 11:26  谢小锋  阅读(347)  评论(0)    收藏  举报