码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-12-15 00:38:07      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:固定   中间   margin   自适应   center   绝对定位   左右   pre   height   

左可以 .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;}
//三个宽度可以自行设置百分比
 

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

标签:固定   中间   margin   自适应   center   绝对定位   左右   pre   height   

原文地址:http://www.cnblogs.com/fireporsche/p/6181432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!