当您滚动时,您会看到图像在导航栏上方而不是在导航栏下方,就像其他内容一样。
问问题
737 次
2 回答
3
使用z-index:9999;
你的问题解决了
#navigation {
background-color: rgba(1, 1, 1, 0.8);
box-shadow: 0 0 8px 0 #000000;
color: rgba(1, 1, 1, 0.8);
height: 35px;
padding-top: 15px;
position: fixed;
top: 0;
width: 100%;
z-index: 9999; // here is
}
于 2012-09-25T17:34:27.407 回答
2
您需要做的是使用高于z-index
图像#navbar
,因此它将始终高于图像,例如导航栏z-index:5
和图像z-index:4
。
于 2012-12-28T09:04:30.080 回答