三列布局:不能使用float,左右兩列絕對定位,分別靠左和靠右,中間列為相對定位,左右margin分別設置為左右兩列的寬度即可,如果列與列之間需要間隔,則增加相應的margin值。
.top{width:auto; background:#999; height:100px;}
.main{height:600px;background-color:red;}
.left{width:200px; height:600px;background-color:blue;position:absolute; left:0;top:100px;}
.right{height:600px;background-color:green;margin-left:210px;}
.foot{width:auto; height:50px; background:orange;}
.main{height:600px;background-color:red;}
.left{width:200px; height:600px;background-color:blue;position:absolute; left:0;top:100px;}
.right{height:600px;background-color:green;margin-left:210px;}
.foot{width:auto; height:50px; background:orange;}