CSS Div fill remaining height
本问题已经有最佳答案,请猛点这里访问。
请看我的琴
我希望绿色中间的
如果重要的话,我也包括引导程序。
给容器:
1 2 | display:flex; flex-direction:column; |
对于元素:
1 | flex:1; |
演示:https://jsfiddle.net/ugjfwbg4/1/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | body { background-color: red; height: 100%; } .wrap { height: 100vh; width: 100%; padding: 20px; background-color: yellow; display:flex; flex-direction:column; } .top { width: 100%; height: 50px; background-color: blue; } .mid { width: 100%; background-color: green; flex:1; display:flex; flex-direction:column; } .left{ flex:1; width: 50%; background-color: red; } .bottom { width: 100%; height: 50px; background-color: blue; } |
1 | left |