第一种:
<!--主体-->
<div class="my-content">
<div class="leftBox">
</div>
<div class="rightBox">
</div>
</div>
.my-content {
position: absolute;
left: 0px;
top: 44px;
bottom: 50px;
width: 100%;
padding: 0;
}
//左边宽度固定,右边宽度适应
//高度都是100%
.my-content .leftBox {
float: left;
width: 80px;
height: 100%;
background-color: pink;
}
//宽度不去定义
.my-content .rightBox {
margin-left: 80px;
height: 100%;
background-color: hotpink;
}