容器高度100%的绝对定位布局_CSS/HTML
程序员文章站
2022-05-16 08:53:36
...
容器高度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_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;}
#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行交叉布局
2,N行布局
3,N列加N行交叉布局
值得注意的是在FF下浏览相对大小容器页面时,调整窗口大小的同时容器大小进行实时调整,而IE只会在窗口调整完毕后才出效果。
IE5.0 / IE5.5 / IE6.0和FF1.5测试通过
上一篇: JS父页面与子页面相互传值方法_javascript技巧
下一篇: MySQL分页的实现_MySQL
推荐阅读
-
html/css中相对定位relative和绝对定位absolute的用法
-
Html5让容器充满屏幕高度或自适应剩余高度的布局实现
-
html/css中相对定位relative和绝对定位absolute的用法
-
绝对定位和浮动的问题,求大神帮忙解决_html/css_WEB-ITnose
-
absolut绝对定位的非绝对定位用法_html/css_WEB-ITnose
-
html和body的高度100%引发的问题_html/css_WEB-ITnose
-
css中绝对定位的img不能被遮罩层遮住,求解决办法!!_html/css_WEB-ITnose
-
absolut绝对定位的非绝对定位用法_html/css_WEB-ITnose
-
如何实现嵌套表格的100%高度_html/css_WEB-ITnose
-
关于浮动和绝对定位的区别,到底是怎么回事?_html/css_WEB-ITnose