<div class="left">左边</div>
<div class="main">中间</div>
<div class="right">右边</div>
<style>
.left{width:200px;height:500px;background:red;float:left;}
.right{width:300px;height:500px;background:yellow;float:right;}
.main{height:500px;background:#ccc;margin:0 300px 0 200px;}
</style>
<div class="main">中间</div>
<div class="right">右边</div>
<style>
.left{width:200px;height:500px;background:red;float:left;}
.right{width:300px;height:500px;background:yellow;float:right;}
.main{height:500px;background:#ccc;margin:0 300px 0 200px;}
</style>
.top{background-color:#ccc;height:50px;}
.main{background-color:red;margin:0 auto;position:relative;}
.left{position:absolute;top:0px; background-color:blue;width:200px;}
.right{ background-color:#9d9;margin-left:210px;}
.foot{background-color:#F63;clear:both;}
我认为这样才是正确,@卢雨曦 的width:100%看上去正确。实际上可拖动
.main{background-color:red;margin:0 auto;position:relative;}
.left{position:absolute;top:0px; background-color:blue;width:200px;}
.right{ background-color:#9d9;margin-left:210px;}
.foot{background-color:#F63;clear:both;}
我认为这样才是正确,@卢雨曦 的width:100%看上去正确。实际上可拖动
.top{background-color:#ccc;height:100px;}
.main{background-color:red;height:600px;margin:0 auto;}
.left{ background-color:blue;height:600px;width:200px;}
.right{background-color:#9d9;height:600px;position:absolute;left:210px;width:100%;}
.foot{background-color:#F63;height:50px;}
.main{background-color:red;height:600px;margin:0 auto;}
.left{ background-color:blue;height:600px;width:200px;}
.right{background-color:#9d9;height:600px;position:absolute;left:210px;width:100%;}
.foot{background-color:#F63;height:50px;}
.top{width:100%;height:100px;background:#ccc}
.main{width:100%;height:600px;background:red;position:relative}
.left{width:200px;height:600px;background:blue;float:left}
.right{height:600px;background:#9d9;position:absolute;right:0;top:0;left:220px}
.foot{width:100%;height:80px;background:#F63}
.main{width:100%;height:600px;background:red;position:relative}
.left{width:200px;height:600px;background:blue;float:left}
.right{height:600px;background:#9d9;position:absolute;right:0;top:0;left:220px}
.foot{width:100%;height:80px;background:#F63}