首页 > 代码库 > 三列布局中,怎么设置左右固定,中间列自适应,且都显示在同一行。

三列布局中,怎么设置左右固定,中间列自适应,且都显示在同一行。

左可以 .left{width:200px;background:red;height:500px;position:absolute;left:0;top:0;}
右可以.right{width:300px;height:500px;position:absolute;right:0;top:0;background:blue}
中间可以.center{height:500px;background:orange;margin:0 310px 0 210px}
先把左右设置为绝对定位,然后再把中间的列设置margin就可以实现了。


//当然可以这样实现三列在同一行显示
左可以 .left{width:33.3%;background:red;height:500px;float:left;}
右可以.right{width:33.3%;height:500px;float:right;background:blue}
中间可以.center{height:500px;width:33.3%;background:orange;float:left;}
//三个宽度可以自行设置百分比
 

三列布局中,怎么设置左右固定,中间列自适应,且都显示在同一行。