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

源码

<!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

posted on 2022-04-11 22:39  路过君  阅读(129)  评论(0编辑  收藏  举报

导航