九州下载 - 系统安卓苹果手机游戏推荐下载网站!

当前位置:九州下载 > 建站问答 >

css边距重叠是什么意思

时间:2023-02-25 12:48编辑:九州下载来源:www.wzjsgs.com

1、边界重叠是指两个或两个以上盒子的相邻边界重合在一起,构成单一边界。

可以相邻也可以嵌套,其中没有非空内容、补白、边框。

.neighbor{
height:100px;
background:red;
}
.father{
background:#f436365e;
}
.child{
height:100px;
margin-top:10px;
background:#00800047;
}
<div>
thisisneighbor
</div>
<div>
<div>
thisischild
</div>
</div>

2、这两个或两个以上块级盒的垂直邻接边界重合,其边界宽度为相邻边界宽度的值。

请注意,水平线不重合。

<styletype="text/css">
.father{
background:#f436365e;
overflow:hidden;
}
.child{
height:20px;
margin:30pxauto30px;
background:#00800047;
}
</style>
<div>
<div>
thisischild1
</div>
<div>
thisischild2
</div>
<div>
thisischild1
</div>
</div>

以上就是css边距重叠的介绍,希望对大家有所帮助。

相关文章