三列布局中,怎么设置左右固定,中间列自适应,且都显示在同一行。
Posted fireporsche
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三列布局中,怎么设置左右固定,中间列自适应,且都显示在同一行。相关的知识,希望对你有一定的参考价值。
左可以 .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;}
//三个宽度可以自行设置百分比
以上是关于三列布局中,怎么设置左右固定,中间列自适应,且都显示在同一行。的主要内容,如果未能解决你的问题,请参考以下文章