边界重叠 | margin collapsing
margin collapsing
块的顶部和底部边距有时会被合并(折叠)成单个边距,其大小是单个边距中最大的(或者只是其中的一个,如果它们相等),这种行为称为边缘折叠
。请注意,浮动元素和绝对定位元素的边距不会折叠。
边缘折叠有三种基本情况:
相邻的同级元素
有些事情要注意:
- 当上述情况合并时,会发生更复杂的边缘折叠(两个以上的边距)。
- 这些规则甚至适用于零的边际,所以第一个/最后一个孩子的边际在父母之外(根据上面的规则)最终是否在父母的边际为零。
- 当涉及负边距时,折叠边距的大小是最大正边距和最小(最负边距)边距之和。
- 当所有边距为负值时,折叠边距的大小是最小的(最负的)。这既适用于相邻元素,也适用于嵌套元素。
实例
HTML
<p>The bottom margin of this paragraph is collapsed …</p>
<p>… with the top margin of this paragraph, yielding a margin of <code>1.2rem</code> in between.</p>
<div>This parent element contains two paragraphs!
<p>This paragraph has a <code>.4rem</code> margin between it and the text above.</p>
<p>My bottom margin collapses with my parent, yielding a bottom margin of <code>2rem</code>.</p>
</div>
<p>I am <code>2rem</code> below the element above.</p>
CSS
div {
margin: 2rem 0;
background: lavender;
}
p {
margin: .4rem 0 1.2rem 0;
background: yellow;
}
结果
规范
Specification | Status | Comment |
---|---|---|
CSS Level 2 (Revision 1)The definition of 'margin collapsing' in that specification. | Recommendation | Initial definition. |