.top{width:100%; height:50px;background:gray;}
.main{width:100%; height:300px;background:red;}
.left{width:200px;height:300px;background:blue;position:absolute;}
.right{margin-left:210px;width:100%;height:300px;background:green;position:absolute;}
.foot{width:100%; height:50px;background:#369;}
.main{width:100%; height:300px;background:red;}
.left{width:200px;height:300px;background:blue;position:absolute;}
.right{margin-left:210px;width:100%;height:300px;background:green;position:absolute;}
.foot{width:100%; height:50px;background:#369;}
已采纳回答 / Idle江
http://www.zhihu.com/question/24529373/answer/29135021哈哈,知乎上关于脱离文档流的这个讲得好,原来脱离文档流是相对于普通流来讲的
2015-06-17
.top{width:auto;background:#ccc;height:100px;}
.main{background:#f00;height:600px;}
.left{ background:blue;width:200px;height:600px; float:left;}
.right{background:green;height:600px; position:absolute;right:0px; left:210px;}
.foot{height:100px;width:auto; clear:both;background:#ccc;}
.main{background:#f00;height:600px;}
.left{ background:blue;width:200px;height:600px; float:left;}
.right{background:green;height:600px; position:absolute;right:0px; left:210px;}
.foot{height:100px;width:auto; clear:both;background:#ccc;}