gpt4 book ai didi

css - 悬停时更改 z-index

转载 作者:行者123 更新时间:2023-11-28 17:05:27 25 4
gpt4 key购买 nike

我正在尝试更改图片帖子的 z-index,当您将鼠标悬停在它们上方时,它会出现在前面并覆盖白色的大文本。不确定我在这里做错了什么......

http://hkumbrella.tumblr.com/

图片发布 CSS:

#post img {
width:100%;
z-index: -100;
}
#post img:hover {
opacity:1;
z-index: 100000 !important;

白色文本 css(2014):

.subtitle2{
top:45%;
left:2%;
font-family:arimo;
font-weight:bold;
color: white;
text-transform:uppercase;
font-size:75px;
letter-spacing:-3px;
text-align:center;
position: fixed;
z-index:100;
color: #FFFFFF !important;
{block:Permalink}display:none;{/block:Permalink}
}

最佳答案

#wrapperz-index 设置为高于 100。

所有图片都在 #wrapper div 中,它的 z-index 小于它的兄弟 .subtiles,所以即使你为 #wrapper 的 child 设置更高的 z-index,它不会排在前面。

并且您在页面的多个位置使用了多个#post。您不应该在多个地方使用 id,而是使用类,它们仅用于此目的。

关于css - 悬停时更改 z-index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30413921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com