好吧,我有一個博客帖子循環,其中限制是每頁6,他們與'col-md-6'並排這樣得到,每行兩個。然而,一些崗位有一個行和其他兩行標題,從而使一個比另一個大,當這種情況發生的佈局被打破,因爲你可以將圖像WordPress的博客循環,自動高度打破布局
代碼中所看到的箱
<div class="col-md-6 col-sm-12 blog-padding-right">
<div class="single-blog two-column">
<div class="post-thumb">
<a href="<?php the_permalink(); ?>"><div class="div-bg-capa" style="background:url(<?php the_post_thumbnail_url('large'); ?>);width: 100%;height: 200px;margin: 12px 0;background-size: cover;background-position: center;"></div></a>
</div>
<div class="post-content overflow">
<h2 class="post-title bold"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p>
<?php echo excerpt('20'); ?>
</p>
<a href="<?php the_permalink(); ?>" class="read-more">Ver mais</a>
</div>
</div>
</div>
是否有CSS或使用,使其保持這種方式引導本身的一些把戲?