三列,左右两列宽度固定,中间宽度自适应

body{
margin:0;
}
#wrapper{
height: 300px;
overflow: hidden;
}
.left{
200px;
height: 100%;
background: red;
float: left;
}
.right{
200px;
height: 100%;
float: right;
background: green;

}
.center{
height:100%;
margin-left:200px;
margin-right:200px;
background:blue;
}

<div id="wrapper">
<div class="left">
</div>

<div class="right">
</div>
<div class="center"></div>
</div>

原文地址:https://www.cnblogs.com/xiaotaiyang/p/3919120.html