我正在制作一个带有 div 的网格 Wordpress 主题。但是在三个div之后,第四个出现之前有一个空白。这是由于高度不同。我怎样才能使 div 没有空白区域?您可以在此处预览它的外观。
CSS是:
#wrapper #frontpage .box {
float: left;
position: relative;
top: 0;
width: 380px;
margin-right: 30px;
margin-bottom: 30px;
font: 100 12.5px 'Helvetica';
line-height: 18px;
color: #3a3a3a;
background: #f1f1f1;
}#wrapper #frontpage .box:nth-child(3n+3) {
margin-right: 0;
}
html 是对九个帖子的查询。
<div class="box">
Content here
</div>