我给了我的导航栏一个固定的位置和一个z-index为1.它在我滚动时保持在顶部是好的,但是当它向上滚动时我的徽标不会落在它后面,它仍然可以在导航区域可以看到我真的不想要的。下面是我的Logo的CSS。我还在学习网页设计。感谢。
#logo {
background-color: #292421;
color: white;
margin-top: 70px;
padding: 40px 0 25px;
}
#nav_bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
background: url(..images/header-fade.gif) repeat-x;
border-bottom: 1px solid #ccc;
}
答案 0 :(得分:1)
您的#nav_bar
没有背景资料。您提供的网址不正确。你可能想要它
background: url(../images/header-fade.gif) repeat-x;
请注意,您在点/
..