为什么不需要设置position就可以实现左边固定宽度右边自适应?
编写html代码
<div class="top">top</div>
<div class="main">
<div class="right">right</div>
<div class="left">left</div>
</div>
<div class="foot">foot</div>
2. 编写CSS部分
.top{height:100px; background:#ccc}
.left{ width:200px; height:500px; background:blue; } ----要实现.left固定.right自适应为什么
.right{ margin-left:210px;height:500px; background:#9C9;}不用加absolute?
.foot{ height:50px; background:#F63 }