侧边栏/分栏高度自动相等

 
注:设置 
margin-bottom:-3000px; padding-bottom:3000px
CSS代码:
#test{overflow:hidden; zoom:1;}
.left{width:200px; margin-bottom:-3000px; padding-bottom:3000px; background:#cad5eb; float:left;}
.right{width:400px; margin-bottom:-3000px; padding-bottom:3000px; background:#f0f3f9; float:right;}
.center{height:300px; margin:0 410px 0 210px; background:#ffe6b8;}
HTML代码:
<div id="test">
    <div class="left">左边,无高度属性,自适应于最高一栏的高度</div>
    <div class="right">右边,无高度属性,自适应于最高一栏的高度</div>
    <div class="center">中间,高度300像素,左右两栏的高度与之自适应</div>
</div>

posted on 2017-01-16 14:05  柔光  阅读(382)  评论(0编辑  收藏  举报

导航