0
有沒有辦法使用CSS3來限制一行(或內嵌)中顯示的子div的數量?如何限制內聯顯示的子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>
我已經考慮只是應用的寬度和利潤,但我也想在一排的最後一個孩子有保證金右:0;
任何想法?
謝謝!雖然我正在拍攝液體佈局,但我只能轉換爲em。 – WhiskeyMike
如果您想要更改將顯示在旁邊的項目數,您甚至可以通過媒體查詢確定應根據屏幕寬度使用的樣式將其擴展到「3n」或「4n」。 – Nimphious