運用flex-grow就可以達到你要的
以下是原理跟我寫的範例
只對第三個div設置 flex-grow
,它就會分配到全部的剩餘空間。
<!doctype html>
<html lang="en">
<head>
<style type="text/css">
.page_content {
display: flex;
flex-flow: column nowrap;
width: 800px;
height: 1000px;
}
.page_content :nth-child(1) {
background-color: #f00;
height: 100px;
}
.page_content :nth-child(2) {
background-color: #090;
height: 200px;
}
.page_content :nth-child(3) {
background-color: #00f;
flex-grow: 1;
}
</style>
</head>
<body>
<div class='page_content'>
<div>
我是第一個div
</div>
<div>
我是第二個div
</div>
<div>
我是第三個div
</div>
</div>
</body>
</html>