左边固定宽度div右边随着窗口大小改变大小的div布局
代码如下
* { margin: 0; padding: 0; } #ccc{ overflow: hidden; } #left { float: left; 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>