两栏布局
左边固定
右边宽度自适应
固定元素要显式设置width,height
自适应元素要显式设置height
自适应
可以通过设置相对单位来完成,如 % , flex:1等
<div class="left"></div>
<div class="right"></div>
.left{
height:200px;
width:300px;
background-color: red;
float: left;
}
.right{
height: 200px;
/* width:100%; */
background-color: green;
}