浮动的固比布局
左边固定宽度div右边随着窗口大小改变大小的div布局
代码如下
* {
margin: 0;
padding: 0;
}
#ccc{
overflow: hidden;
}
#left {
float: left;
width: 200px;
height: 100px;
background-color: green;
}
#content {
background-color: orange;
margin-left: 200px;
height: 100px;
}
<div id="left">Left sidebar</div>
<div id="content">Main Content</div>

浙公网安备 33010602011771号