假设我有以下 html 代码
<div class="f1">
<div class="f2">
</div>
</div>
以下css适用于它
.f1 {
width: 200px;
height: 200px;
background: #fff;
margin: 5em auto;
}
.f2 {
background: #000;
width: 100px;
height: 100px;
margin: 20px; // this doesn't work
}
然后我看到一个奇怪的行为,即 margin-top 属性不适用于 class .f2
。我不知道为什么,但是当我在课堂上添加一些填充或边框时,f1
它就会起作用。你能解释一下吗?