正如您在这张图片中看到的那样,我在没有顶部边框div
的绿色中有一个橙色。div
橙色div
有一个30px
上边距,但它也将绿色div
向下推。当然,添加顶部边框可以解决问题,但我需要绿色div
顶部无边框。我能做什么?
.body {
border: 1px solid black;
border-top: none;
border-bottom: none;
width: 120px;
height: 112px;
background-color: lightgreen;
}
.body .container {
background-color: orange;
height: 50px;
width: 50%;
margin-top: 30px;
}
<div class="header">Top</div>
<div class="body">
<div class="container">Box</div>
</div>
<div class="foot">Bottom</div>
谢谢