首页 > 其他 > 详细

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

时间:2016-12-15 00:35:16      阅读:174      评论:0      收藏:0      [点我收藏+]
左可以 .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;}
//三个宽度可以自行设置百分比
 

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!