
1、边界重叠是指两个或两个以上盒子的相邻边界重合在一起,构成单一边界。
可以相邻也可以嵌套,其中没有非空内容、补白、边框。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | .neighbor{
height : 100px ;
background : red ;
}
.father{
background : #f43636 5e;
}
.child{
height : 100px ;
margin-top : 10px ;
background : #008000 47;
}
<div>
this is neighbor
</div>
<div>
<div>
this is child
</div>
</div>
|
2、这两个或两个以上块级盒的垂直邻接边界重合,其边界宽度为相邻边界宽度的值。
请注意,水平线不重合。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <style type= "text/css" >
.father{
background : #f43636 5e;
overflow : hidden ;
}
.child{
height : 20px ;
margin : 30px auto 30px ;
background : #008000 47;
}
</style>
<div>
<div>
this is child 1
</div>
<div>
this is child 2
</div>
<div>
this is child 1
</div>
</div>
|
以上就是css边距重叠的介绍,希望对大家有所帮助。更多css学习指路:css教程
本文教程操作环境:windows7系统、css3版,DELL G3电脑。