如何让CSS导航固定在页面顶端,本来是在底部固定的

2024-11-25 10:45:18
推荐回答(4个)
回答1:

#maximg
{z-index:999;background:rgba(0, 0, 0, 0.8) none repeat scroll 0 0 !important;
filter:Alpha(opacity=80); background:#000;width:100%;height:50px;position:fixed;top:0;
_position:absolute;
_background-attachment:fixed;
_top:expression(eval(document.documentElement.scrollTop));
_bottom:auto;}

可能我误会了你的意思,这样的话你只需把z-index改成正值999就行了,你这负值肯定会在页面下面的。

回答2:

position:fixed;

回答3:

.nav{background-position:fixed;top:0;}

回答4:

#maximg { Z-INDEX: -2; POSITION: absolute; WIDTH: 100%; HEIGHT: 100%; TOP: 0px; LEFT: 0px; overflow:hidden;}