上下两个div, 一个固定高度, 另一个铺满屏幕

时间:2023-03-09 00:10:18
上下两个div, 一个固定高度, 另一个铺满屏幕
<div class="box">
<div class="el1"></div>
<div class="el2"></div>
</div>

  

.box {width:200px;height:500px;background:red;display:flex;flex-direction:column;}
.el1 {height:100px;background:green;}
.el2 {background:blue;flex:1}

  

上下两个div, 一个固定高度, 另一个铺满屏幕