.top{height:100px;background:gray;}
.main{height:600px;background:red;margin:0 ;}
.left{width:200px;height:600px;float:left;background:blue;}
.right{width:100%;height:600px; position:absolute;left:210px;background:green;}
.foot{height:600;background:yellow;}
.main{height:600px;background:red;margin:0 ;}
.left{width:200px;height:600px;float:left;background:blue;}
.right{width:100%;height:600px; position:absolute;left:210px;background:green;}
.foot{height:600;background:yellow;}
<style>
body{margin;0;padding:0;font-size:60px;}
.top{height:200px;backgroun:yellow;}
.main{height:1000px;background:pink;}
.foot{height:200px;background:blue;}
.top .main .foot{margin:0 auto;}
<body>
<div class="top">我是top</div>
<div class="main">我是内容</div>
<div class="foot">我是页脚</div>
</body>
body{margin;0;padding:0;font-size:60px;}
.top{height:200px;backgroun:yellow;}
.main{height:1000px;background:pink;}
.foot{height:200px;background:blue;}
.top .main .foot{margin:0 auto;}
<body>
<div class="top">我是top</div>
<div class="main">我是内容</div>
<div class="foot">我是页脚</div>
</body>
.top{height:100px;background:gray;}
.main{height:300px;background:red;width:100%;position:relative;}
.left{width:200px;position:absolute;left:0;top:0;height:300px;background:blue;}
.right{background:#9c9;height:300px;margin-left:210px;}
.foot{height:50px;background:#f63;}
.main{height:300px;background:red;width:100%;position:relative;}
.left{width:200px;position:absolute;left:0;top:0;height:300px;background:blue;}
.right{background:#9c9;height:300px;margin-left:210px;}
.foot{height:50px;background:#f63;}
.main{width:500px;height:300px;background:red;margin:0 auto;position:relative;}
.left{width:200px;height:300px;background:blue;float:left;top:0;left:0;}
.right{position:absolute;height:300px;background:green;right:0;width:55%;}
.foot{height:50px;background:orange;clear:both;}
.left{width:200px;height:300px;background:blue;float:left;top:0;left:0;}
.right{position:absolute;height:300px;background:green;right:0;width:55%;}
.foot{height:50px;background:orange;clear:both;}
只需要在.left{}中添加float:left;在.right{}中添加float;right;就可以起到效果。然后如果想有间隙,也即是和效果图一样的话,就必须要修改.left和.right中的width值,使左右相加的值小于960px即可。
.top{width:100%;height:100px;background:#ccc;}
.main{height:800px;background:red;}
.left{width:200px;height:800px;background:blue;position:absolute;}
.right{margin-left:210px;width:100%;height:800px;background:green;position:absolute;}
.foot{width:100%;height:100px;background:orange;margin:0 auto;}
.main{height:800px;background:red;}
.left{width:200px;height:800px;background:blue;position:absolute;}
.right{margin-left:210px;width:100%;height:800px;background:green;position:absolute;}
.foot{width:100%;height:100px;background:orange;margin:0 auto;}