容器高度100%的絕對位置布局_CSS/HTML

來源:互聯網
上載者:User
容器高度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; top: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; top: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測試通過
  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.