使用 margin 定义块元素的垂直外边距时,可能会出现外边距的合并。
当上下相邻的两个块元素(兄弟关系) 相遇时,如果上面的块元素定义了 margin-bottom
下面的块元素定义了 margin-top 时,就会出现垂直外边距合并。
注意:这里的合并,并不是两个值相加。而是取这两个值的最大值。
例子:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.up {
width: 200px;
height: 200px;
background-color: blue;
margin-bottom: 20px;
}
.down {
width: 200px;
height: 200px;
background-color: red;
margin-top: 30px;
}
</style>
</head>
<body>
<div class="up"></div>
<div class="down"></div>
</body>
</html>