做一些後台項目,和一下帶側邊欄項目的時候登高布局很常用,總結了下有幾種
1.margin-bottom方法
這裡直接介紹我認為的最佳的側邊欄/分欄高度自動相等方法。核心的CSS代碼如下(數值不固定):
margin-bottom:-3000px; padding-bottom:3000px;
再配合父標簽的overflow:hidden
屬性即可實現高度自動相等的效果。
舉個簡單的實例吧,如下CSS及HTML代碼:
#content{overflow:hidden;} .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{margin:0 410px 0 210px; background:#ffe6b8; height:600px;}
<div id="content"> <div class="left">左邊,無高度屬性,自適應於最高一欄的高度</div> <div class="right">右邊,無高度屬性,自適應於最高一欄的高度</div> <div class="center">中間,高度600像素,左右兩欄的高度與之自適應</div> </div>
後續再慢慢總結比較實用的幾種