容器高度100%是常用的需求,任何容器都可以實現,而且不需要巢狀關係。
把body看作是一個容器,做為內部物件的上層標籤,他的高度設定為100%是關鍵。
最基本的例子
* { margin:0; padding:0; border:0;}
html,body { height:100%;} /* 同時設定html是為了相容FF */
#box_2 { height:100%; background:#000;}
重疊定位效果
#box_1 { position:absolute; top:0; left:0; width:100%; height:50px; background:#f00; z-index:2;}
#box_2 { position: absolute; left:0; top:0; width:100%; height:100%; background:#000; z-index:1;}
縱向相對高度效果
#box_1 { position:absolute; top:0; left:0; width:100%; height:30%; background:#f00; z-index:2;}
#box_2 { position:absolute; left:0; 頂:30%; width:100%; height:70%; background:#000; z-index:1;}
橫向相對寬度效果
#box_1 { position:absolute; top:0; left:0; width:30%; height:100%; background:#f00; z-index:2;}
#box_2 { position:absolute;頂:0; right:0; width:70%; height:100%; background:#000; z-index:1;}
這種版面是不需要float的,還可以有很多變化:
1,N列佈局
2,N行佈局
3,N列加N行交叉佈局
值得注意的是在FF下瀏覽相對大小容器頁面時,調整視窗大小的同時容器大小進行即時調整,而IE只會在視窗調整完畢後才出效果。
IE5.0 / IE5.5 / IE6.0和FF1.5檢定通過