(初学前端,请多包涵
为什么这里不显示大小?
经提醒,到Firefox试了一下
Firefox这个margin的黄色(对应chrome的橙色)就没显示在右边。。。这个才是正确的实现
<style>
.grandfather {
border: 2px solid red;
width: 300px;
height: 300px;
}
.father {
width: 200px;
height: 200px;
background-color: yellow;
}
.son {
margin: 2em 0;
background-color: pink;
}
</style>
<div class="grandfather">
<div class="father">
<div class="son">this is son</div>
</div>
</div>
margin没有设置或者设置为0的时候就这样显示的吧