展示
左边,无高度属性,自适应于最高一栏的高度
右边,无高度属性,自适应于最高一栏的高度
中间,高度300像素,左右两栏的高度与之自适应
代码
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>