为什么在 div 中忽略 h1、h2、h3 元素的边距?
<div class="col">
<h3>This is header</h3>
</div>
<div class="col">
<h3>This is header</h3>
</div>
.col {
background: gray;
margin-bottom: 1em;
}
.col h3 {
margin-bottom: 1em;
}
当我将 h 元素放入 div 并且其中没有其他文本时,虽然指定了 h 元素和 div 元素的底部边距,但忽略了 h 底部边距。