+ -
当前位置:首页 → 问答吧 → div块始终在顶部且不被覆盖

div块始终在顶部且不被覆盖

时间:2011-10-08

来源:互联网

div块始终在顶部且不被覆盖,就像新版微博顶部的导航条一样?急呀!

作者: zuobuyin   发布时间: 2011-10-08

设置z-index和position就好了啊。。。

作者: BLUE_LG   发布时间: 2011-10-08

HTML code
<body style="z-index:0;background:#ff0;width:100%;height:1000px;">
<div style="position:fixed;width:100%;height:200px;display:block;background:#f00;z-index:1000;top:0;left:0">
顶部
</div>
<div style="float:left;width:100%;height:200px;display:block;background:#15c;padding-top:800px;">
底部
</div>
</body>

作者: changjay   发布时间: 2011-10-09