頁面結構flex
<div class="container"> <div class="left">left</div> <div class="right">right</div> </div>
floatcode
<style> .left{ float: left; width:150px; height: 300px; } .right{ overflow: hidden; height: 300px; } </style>
flexclass
.container{display: flex;} .left{ flex-grow:0; width:150px; height: 300px; } .right{ flex-grow:1; height: 300px; }