垂直外边距的重叠
Posted goodgirl----xiaomei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了垂直外边距的重叠相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>垂直外边距的重叠</title>
<style>
.box1{
width:100px;
height: 100px;
background: red;
/*为上边元素设置下边距*/
margin-bottom: 100px;
}
/*垂直外边距的重叠
* ——在网页中垂直方向的相邻外边距会发生外边距的重叠
* 所谓的外边距重叠指兄弟元素之间的相邻外边距会取最大值而不是取和
* 如果父子元素的垂直外边距相邻了,则子元素的外边距会设置给父元素
*
* 打破他们的格局————让他们不相邻
* 1.他们之间加元素
* 2.border、padding
* 3.(父子间)
*
*/
.box2{
width:100px;
height: 100px;
background: green;
/*为上边元素设置上边距*/
border-top:10px #ccc solid;
margin-top: 100px;
}
.box3{
width:200px;
height: 100px;
background: yellow;
/*border-top:10px #ccc solid;
padding-top:10px;*/
padding-top:100px;
}
.box4{
width:100px;
height: 100px;
background: greenyellow;
}
</style>
</head>
<body>
<div class="box3">
<div class="box4"></div>
</div>
<div class="box1"></div>
<div class="box2"></div>
</body>
</html>
以上是关于垂直外边距的重叠的主要内容,如果未能解决你的问题,请参考以下文章