三列布局:不能使用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;}