我正在試驗Flexbox,我想知道是否有一個屬性,如flex:1,它允許元素的高度爲頁面高度的100%,而無需添加滾動條向下滾動。如果我要調整它的大小,它會粘住而不是添加滾動條。我希望你明白。我添加了一個高度設置爲1000px的小提琴,我希望你們中的任何一個能夠知道如何將它設置爲100%的頁面。使頁面高度達到100%?
https://jsfiddle.net/mL594h73/
HTML:
<div class="wrapper">
<div class="box-1"></div>
<div class="box-2"></div>
</div>
CSS:
.wrapper {
display: flex;
}
.box-1 {
flex: 1;
width: 200px;
height: 1000px;
background-color`enter code here`: #2ABB9B;
}
.box-2 {
flex: 1;
width: 200px;
height: 1000px;
background-color: #16A085;
}
使用VH的股利或元素。 1vh =屏幕高度的1/100。 100vh因此將是100%屏幕高度。 – Korgrue
[使div填充剩餘屏幕空間的高度]可能的重複(http://stackoverflow.com/questions/90178/make-a-div-fill-the-height-of-the-remaining-screen-空間) –