标签:src process http size image 图片 proc csdn 上下
margin 外边距
padding 内边距
盒子布局的稳定性:
优先使用width>padding>margin
上下盒子发生margin塌陷 margin小的盒子塌陷在大的盒子,不是简单叠加。浮动后,左右margin也不会发生塌陷,如想测试,把注释代码取消注释即可。
塌陷效果图:
.box1{
/*float: left;*/
width: 200px;
height: 200px;
background: yellowgreen;
/*margin: 60px 50px;*/
margin-bottom: 100px;
/*margin-right: 50px;*/
}
.box2{
/* float: left;*/
width: 200px;
height: 200px;
background: skyblue;
/* margin-left: -50px; */
margin: 150px;
}
父子盒子发生margin塌陷 margin小的盒子塌陷在大的盒子。如下例:父盒子margin-top:100px,儿子margin-top:60px,margin塌陷,只有100px
塌陷效果图:
.box1{ /*父盒子*/
/*float: left;*/
width: 200px;
height: 140px;
/* padding-top: 60px; */
background: yellowgreen;
/*border: 1px solid red;*/
margin-top: 100px;
}
.box2{
/*float: left;*/
width: 100px;
height: 100px;
background: skyblue;
margin-top: 60px;
}
标签:src process http size image 图片 proc csdn 上下
原文地址:https://www.cnblogs.com/growingrick/p/12141631.html