Skip to content

css外边距合并和BFC

外边距合并是一个CSS现象,当两个或多个垂直外边距相遇时,它们会合并成一个单一边距。这个单一外边距的大小是原来外边距中最大的那个。

  • 块级元素的垂直外边距在普通文档流中会发生合并。
  • 水平外边距不会合并。
  • 清除浮动或创建BFC(Block Formatting Context)可以防止外边距合并。

如何避免外边距合并

改变元素的display属性为inline-blockfloat元素或者positionabsolutefixed,可以防止外边距合并。还可以创建一个新的BFC来避免合并。

BFC

BFC(Block Formatting Context)是Web页面的可视化CSS渲染的一部分,它决定了元素如何对其内容进行定位,以及与其他元素的关系和相互作用。在某些情况下,创建BFC可以防止外边距合并。

触发BFC的条件:

  1. 浮动元素(元素的 float 不是 none)。
  2. 绝对定位元素(元素的 positionabsolutefixed)。
  3. 行内块元素(元素的 displayinline-block)。
  4. overflow 值不为 visible 的块元素。
  5. 弹性元素(displayflexinline-flex 元素的直接子元素)。
  6. 网格元素(displaygridinline-grid 元素的直接子元素)。

举例子1

html
<div class="first-box">第一个盒子</div>
<div class="second-box">第二个盒子</div>
css
.first-box {
    width: 200px;
    height: 100px;
    background-color: lightblue;
    margin-bottom: 50px; /* 下外边距 */
}

.second-box {
    width: 200px;
    height: 100px;
    background-color: lightcoral;
    margin-top: 30px; /* 上外边距 */
    overflow: hidden; /* 触发BFC */
}

虽然 second-box触发了BFC,但是外边距还是合并了。

这是因为,即使一个元素形成了BFC,它的顶部外边距仍然可能与其前一个兄弟元素的底部外边距发生合并。要防止相邻元素之间的外边距合并,我们需要在两者之间添加一个分隔,使得两个相邻的块级元素不直接相邻,或者确保其中一个元素的外边距不参与合并。

html
<div class="first-box">第一个盒子</div>
<div class="bfc-wrapper">
  <div class="second-box">第二个盒子</div>
</div>
css
.first-box {
    width: 200px;
    height: 100px;
    background-color: lightblue;
    margin-bottom: 50px; /* 下外边距 */
}

.bfc-wrapper {
    overflow: hidden; /* 触发BFC */
}

.second-box {
    width: 200px;
    height: 100px;
    background-color: lightcoral;
    margin-top: 30px; /* 上外边距 */
}

举例子2

在CSS中,即使元素形成了BFC,它的顶部外边距仍然可能与其前一个兄弟元素的底部外边距发生合并。为了防止相邻元素之间的外边距合并,我们需要在两者之间添加一个分隔,使得两个相邻的块级元素不直接相邻,或者确保其中一个元素的外边距不参与合并。

html
<div class="first-box">第一个盒子</div>
<div class="separator"></div>
<div class="second-box">第二个盒子</div>
css
.first-box {
    width: 200px;
    height: 100px;
    background-color: lightblue;
    margin-bottom: 50px;
}

.separator {
    overflow: hidden; /* 触发BFC */
    width: 100%; /* 占满容器宽度 */
    height: 0; /* 不占空间 */
}

.second-box {
    width: 200px;
    height: 100px;
    background-color: lightcoral;
    margin-top: 30px;
}

总结

  • 外边距合并的几种情况

1、同一文档流中的兄弟元素的上下外边距总会发生合并

2、空元素自己的上下边距会发生合并

3、毗邻的父子元素,父元素的上边距,会和子元素的上边距合并;父元素的下边距,会和子元素的下边距发生合并

  • 避免外边距合并

1、使发生合并的元素处于不同的bfc块下

2、破坏其毗邻的位置关系,增加border或者padding,不让margin直接接触

  • 触发bfc的几个属性

1、根元素本身就是一个bfc,即body标签

2、float不为none

3、position为absolute或fixed

4、display为inline-block,table-cell,table-caption,flex,inline-flex

5、overflow不为visible