容器高度100%是經(jīng)常用到的需求,任何容器都可以實(shí)現(xiàn),而且不需要嵌套關(guān)系。
把body看作是一個(gè)容器,做為內(nèi)部對(duì)象的上層標(biāo)簽,他的高度設(shè)置為100%是關(guān)鍵。
最基本的例子
* { margin:0; padding:0; border:0;}
html,body { height:100%;} /* 同時(shí)設(shè)置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;}
縱向相對(duì)高度效果
#box_1 { position:absolute; top:0; left:0; width:100%; height:30%; background:#f00; z-index:2;}
#box_2 { position:absolute; left:0; top:30%; width:100%; height:70%; background:#000; z-index:1;}
橫向相對(duì)寬度效果
#box_1 { position:absolute; top:0; left:0; width:30%; height:100%; background:#f00; z-index:2;}
#box_2 { position:absolute; top:0; right:0; width:70%; height:100%; background:#000; z-index:1;}
這種布局是不需要float的,還可以有很多變化:
1,N列布局
2,N行布局
3,N列加N行交叉布局
值得注意的是在FF下瀏覽相對(duì)大小容器頁面時(shí),調(diào)整窗口大小的同時(shí)容器大小進(jìn)行實(shí)時(shí)調(diào)整,而IE只會(huì)在窗口調(diào)整完畢后才出效果。
IE5.0 / IE5.5 / IE6.0和FF1.5測(cè)試通過