用浮动布局也可以如下:
.top{width:100%;height:100px;background:#ccc;}
.main{width:100%;height:500px;background:red;}
.left{width:200px;height:100%;background:blue;float:left;margin-top:-500px;}
.right{height:100%;background:#9acc99;margin-left:210px;}
.foot{width:100%;height:50px;background:#ff6634;}
.top{width:100%;height:100px;background:#ccc;}
.main{width:100%;height:500px;background:red;}
.left{width:200px;height:100%;background:blue;float:left;margin-top:-500px;}
.right{height:100%;background:#9acc99;margin-left:210px;}
.foot{width:100%;height:50px;background:#ff6634;}
这个布局才是正确的
.top{width:100%;background:#ccc;height:80px;}
.main{width:100%; height:500px; background:red;position:relative;}
.left{width:200px;background:blue;height:100%;position:absolute;top:0px;}
.right{background:green;height:100%;margin-left:210px;}
.foot{width:100%;background:sandybrown;}
.top{width:100%;background:#ccc;height:80px;}
.main{width:100%; height:500px; background:red;position:relative;}
.left{width:200px;background:blue;height:100%;position:absolute;top:0px;}
.right{background:green;height:100%;margin-left:210px;}
.foot{width:100%;background:sandybrown;}
.top{width:800px;height:100px;margin:0 auto;background:gray;}
.main{width:800px;height:900px;background:red;margin:0 auto;}
.left{width:280px;height:900px;background:blue;float:left}
.right{width:510px;height:900px;background:green;float:right;}
.foot{width:800px;height:80px;margin:0 auto;}
.main{width:800px;height:900px;background:red;margin:0 auto;}
.left{width:280px;height:900px;background:blue;float:left}
.right{width:510px;height:900px;background:green;float:right;}
.foot{width:800px;height:80px;margin:0 auto;}
.top{width:100%; height:60px; background:#ccc;}
.main{width:100%; height:300px; background:red;}
.left{width:28%; height:300px; float:left; background:blue;}
.right{width:70%; height:300px; float:right; background:green;}
.foot{width:100%; height:40px; background:orange; clear:both; }
.main{width:100%; height:300px; background:red;}
.left{width:28%; height:300px; float:left; background:blue;}
.right{width:70%; height:300px; float:right; background:green;}
.foot{width:100%; height:40px; background:orange; clear:both; }