css 子元素margin-top影响了父元素

2020-11-12 11:06:52 浏览数 (1)

源码

代码语言:javascript复制
<!DOCTYPE HTML>
<html manifest="">
<head>
  <style>
    .box1 {
      background-color: deepskyblue;
      height: 200px;
      width: 200px;
    }
    .box2 {
      background-color: coral;
      margin-top: 50px;
      height: 50px;
      width: 200px;
    }
  </style>
</head>
  <body>
  <div class="box1">
    <div class="box2">
    </div>
  </div>
  </body>
</html>

效果

可以看到box1虽然没有margin-top:50px,但是上方也留出了50px

原因

css盒模型规定: ··· In this specification, the expression collapsing margins means that adjoining margins (no non-empty content, padding or border areas or clearance separate them) of two or more boxes (which may be next to one another or nested) combine to form a single margin. 所有毗邻的两个或更多盒元素的margin将会合并为一个margin共享之。毗邻的定义为:同级或者嵌套的盒元素,并且它们之间没有非空内容、Padding或Border分隔。 ···

解决方案

  1. 父级或子元素使用浮动或者绝对定位absolute 浮动或绝对定位不参与margin的折叠
  2. 父级overflow:hidden;
  3. 父级设置padding
  4. 父级设置border

0 人点赞