1.不适用float的方法:
左可以 .left{width:200px;background:red;height:500px;position:absolute;left:0;top:0;}
右可以.right{300px;height:500px;position:absolute;right:0;top:0;background:blue}
中间可以.center{height:500px;background:orange;margin:0 310px 0 210px}
先把左右设置为绝对定位,然后再把中间的列设置margin就可以实现了。
//当然可以这样实现三列在同一行显示
2.使用float的方法:
左可以 .left{width:33.3%;background:red;height:500px;float:left;}
右可以.right{33.3%;height:500px;float:right;background:blue}
中间可以.center{height:500px;33.3%;background:orange;float:left;}
//三个宽度可以自行设置百分比