为什么overflow:hidden无法阻止兄弟div中的margin崩溃,如display:inline-block?

时间:2019-01-01 15:59:41

标签: css css3

据我所知,overflow: hiddendisplay:inline-block都可以建立新的阻塞格式上下文,而阻塞格式上下文可以防止边距崩溃。

但是overflow:hidden不能防止同级div之间的边距崩溃,例如display:inline-block

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    .div1 {
      background-color: red;
      margin-bottom: 100px;
    }
    
    .div2 {
      background-color: orange;
      margin-top: 200px;
      overflow: hidden;
    }
  </style>
</head>

<body>
  <div class="div1">div1</div>
  <div class="div2">div2</div>
</body>

</html>

我希望.div2上的overflow:hidden可以建立一个块格式上下文,并且.div1和.div2之间的边距应该为300px。但这没有用。为什么?

1 个答案:

答案 0 :(得分:0)

由块框建立的兄弟块格式化上下文之间的边距不会侵入任何一个上下文,因此允许边距折叠正常发生。通过创建新的BFC可以防止的边际崩溃是在建立BFC的父级与任何流入的块级子级子级之间。

内联块之间的边距不折叠的原因不是因为它们建立了块格式化上下文,而是因为同级兄弟之间的边距仅在它们是块级框时才折叠,而在它们是内联级框时(inline,inline)才不会折叠-block,内联表或其他任何内容。