使用Flexbox 時,您可能會遇到讓子元素填充其父容器的整個垂直空間的挑戰。如果您希望子元素的高度為父元素的 100%,這可能會特別令人沮喪。
這是您的簡化版本HTML 和CSS代碼:
HTML:
<div class="container"> <div class="flex-1"></div> <div class="flex-2"> <div class="flex-2-child"></div> </div> </div>
CSS:
.container { height: 200px; width: 500px; display: flex; flex-direction: row; } .flex-1 { width: 100px; background-color: blue; } .flex-2 { position: relative; flex: 1; background-color: red; } .flex-2-child { height: 100%; width: 100%; background-color: green; }
.flex-2 { display: flex; align-items: stretch; }
.flex-2-child { align-self: stretch; }
以上是如何使 Flexbox 子容器佔據其父容器的整個高度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!