使用 CSS Flexbox 時,瀏覽器會表現出不同的行為,特別是在容器大小調整的情況下。為了解決這種不一致問題,我們尋求一種解決方案,使 Flexbox 容器水平擴展以容納其包裝的內容。
在某些情況下,可能需要一個容器包含以列佈局排列的多個 div 元素。目標是使這些元素能夠垂直流動,到達底部時環繞,從而形成文字或圖像列。然而,控制容器的水平擴展以匹配包裝的元素仍然是一個挑戰。
為了實現所需的行為,可以利用具有垂直寫入模式的行彈性容器。透過這樣做,內聯和塊方向相反,導致彈性項目垂直流動。因此,對齊的書寫模式在 Flex 專案中被反轉,恢復水平對齊。
有關實際演示,請考慮以下程式碼片段:
.container { display: inline-flex; writing-mode: vertical-lr; /* Reverses inline and block directions */ flex-wrap: wrap; align-content: flex-start; height: 350px; background: blue; } .photo { writing-mode: horizontal-tb; /* Restores horizontal alignment */ width: 150px; height: 100px; background: red; margin: 2px; }
<div class="container"> <div class="photo">1</div> <div class="photo">2</div> <div class="photo">3</div> <div class="photo">4</div> <div class="photo">5</div> <div class="photo">6</div> <div class="photo">7</div> <div class="photo">8</div> <div class="photo">9</div> </div>
透過此技術,容器將隨著新內容的添加而動態水平擴展,確保各個元素的正確包裝和對齊。
以上是如何讓 Flexbox 容器水平擴展以包裝內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!