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

宽度自适应三栏的布局方式

时间:2014-10-31 09:58:50      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   ar   sp   strong   div   

1、绝对定位法(最易理解)
左右两栏采用绝对定位,分别固定于页面的左右两侧,中间的主体栏用左右margin值撑开距离。于是实现了三栏自适应布局。

1     html,body{margin:0; height:100%;}
2     #left,#right{position:absolute; top:0; width:200px; height:100%;}
3     #left{left:0; background:#a0b3d6;}
4     #right{right:0; background:#a0b3d6;}
5     #main{margin:0 210px; background:#ffe6b8; height:100%;}
1 <div id="left">1</div>
2  <div id="main">2</div>
3  <div id="right">3</div>

2、margin负值法(不易理解)

1 html,body{margin:0; height:100%;}
2 #main{width:100%; height:100%; float:left;}
3 #main #body{margin:0 210px; background:#ffe6b8; height:100%;}
4 #left,#right{width:200px; height:100%; float:left; background:#a0b3d6;}
5 #left{margin-left:-100%;}
6 #right{margin-left:-200px;}

重点是第一个div是中间的main,且必须套一个容器。

 

3、浮动法(最常见)

1 html,body{margin:0; height:100%;}
2 #main{height:100%; margin:0 210px; background:#ffe6b8;}
3 #left,#right{width:200px; height:100%; background:#a0b3d6;}
4 #left{float:left;}
5 #right{float:right;}

 

 

宽度自适应三栏的布局方式

标签:style   blog   io   color   os   ar   sp   strong   div   

原文地址:http://www.cnblogs.com/yiliweichinasoft/p/4064225.html

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