当内部元素放置上边距时,容器被拉下,因此白色部分出现在页面顶部。我怎样才能防止那个白色部分?
.container {
background: red;
height: 500px;
}
.inner {
margin-top: 100px;
height: 50px;
background: yellow;
}
Why there is white section in here ??
<div class="container">
<div class="inner"></div>
</div>