一,上固定,下自适应
1,代码
<div class="all">
<div class="top">111</div>
<div class="center">222</div>
</div>
<style>
.all {
100%;
height: 100%;
display: flex;
flex-direction: column;
}
.top {
100%;
height: 100px;
background-color: #1ab394;
}
.center {
100%;
flex: 1;
background-color: #1c84c6;
}
</style>