有没有办法使用 CSS3 来限制子 div 连续显示(或内联)的数量?
<div class="parent">
<div class="child">
<img>
<p>Text explaining img</p>
</div>
<div class="child">
<img>
<p>Text explaining another img</p>
</div>
<!-- If I only want two per line, let's push the next two down -->
<div class="child">
<img>
<p>Text explaining another img</p>
</div>
<div class="child">
<img>
<p>Text explaining another img</p>
</div>
</div>
我考虑过只应用宽度和边距,但我也希望一行中的最后一个孩子有 margin-right:0;
有任何想法吗?