我在使用 safari 中的固定元素时遇到了一些问题。我在 Firefox 中创建了滚动站点,甚至不需要将简单文本 div 的 z-index 指定为位于其他内容之后,直到向下滚动到。但出于某种原因,它在 Safari 中出现在其他所有内容之前。我已经尝试为它创建一个负 z-index 并为其他所有东西创建一个正 z-index 但没有变化。这是它的代码。
谢谢你的帮助!
如果这有助于更有意义,这里也是查看它的链接(您必须登录才能查看该站点 - 使用用户名 stackoverflow 密码:stackoverflow
http://lynchbryan.com/wp-login
<div id="tagline">
<span class="tags">We</span><span class="tagl">partner</span> <span class="tags">with clients to</span> </br><span class="tagl">cultivate</span> <span class="tags">the</span> <span class="tagl">potential</span><span class="tags"> of people</span>
</div>
#post-16 #tagline {
position:fixed;
bottom:50%;
text-align: center;
left: 50%;
z-index:-999;
}
#post-16 .tags {
font-family:'AndesLight';
font-size:23px;
color:#ffffff;
padding:0 10px;
}
#post-16 .tagl {
font-family:'ThirstyRoughReg';
font-size:50px;
color:#ffffff;
}