如果您查看我的测试网站here,您会看到"向下滚动"无论我输入什么z-index,按钮都会重叠我的所有内容。有没有办法解决这个问题?我意识到我的位置是absolute
,这很可能是问题,但如果我将其说明为relative
,则不再将其设置在我的页面底部。
#scroll-down {
height: 53px;
width: 100%;
display: table-cell;
position: absolute;
color: #fff;
padding-top: 20px;
padding-bottom: 20px;
bottom: 0;
left: 0;
z-index: inherit;
vertical-align: middle;
background-color: rgba(0, 0, 0, 0.5);
cursor: pointer;
transition: all 0.25s ease-in-out;
}
#scroll-down:hover {
color: #bae9ff;
background-color: #fff;
}

<div class="site-wrap">
<div class="background-image img-home">
<div class="text">Welcome!</div>
<a id="scroll-down noselect">
<div id="scroll-down">Scroll Down
<br />
<object class="scroll-down-img" height="33" width="50"></object>
</div>
</a>
</div>
&#13;
答案 0 :(得分:4)
z-index
仅对属性position
且值为absolute
或fixed
或relative
的元素生效。带position: static
的元素(所有元素的默认元素)不会受z-index
的影响。
在您的情况下最简单的方法,将position: relative
添加到.header,以便您的标头标记变为如下所示:
.header {
width: 100%;
background-position: center;
background-repeat: no-repeat;
z-index: 1000;
position: relative;/* this will fix it */
}
答案 1 :(得分:1)
如果你想在标题下面滚动你的滚动div,那么在.top-bar类中使用z-index:999,这样top-bar就会出现在滚动条文本之上,你就完成了。
.top-bar {
z-index:999;
}
答案 2 :(得分:-1)
你遇到的问题是&#34;对象&#34;标签。像OBJECT,EMBED,FRAME(以及某些以前的浏览器版本中的SELECT)之类的标签被渲染为窗口模型的一部分,并且不尊重z-index。经典的方法是将顶级内容放在iframe中。在你的情况下,我无法理解为什么你需要简单按钮的对象标签。只需用图片更改即可。