行 (またはインライン) に表示される子 div の量を制限するために CSS3 を使用する方法はありますか?
<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; を持たせたいと思います。
何か案は?