gpt4 book ai didi

internet-explorer-8 - Z-index 在 IE8 中损坏?

转载 作者:行者123 更新时间:2023-12-03 23:24:02 24 4
gpt4 key购买 nike

这段代码适用于我尝试过的所有其他浏览器,除了 IE8。

IE8 似乎忽略了 z-index - 弹出窗口变成了一个弹出窗口。

它在正确的位置,只是在缩略图下方呈现。

任何人?

谢谢!

HTML:

<a class="thumbnail" href="#thumb">
<img src="comic_a3_thumb.jpg" height="300" width="212" border="0"
style="float:right; margin-top:10px;margin-bottom:10px;"
alt="description" />
<span>
<img src="/images/comic_a3_popup.jpg" />
</span>
</a>

CSS:

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: 0px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -140px; /*position where enlarged image should offset horizontally */
left: -500px;
}

最佳答案

简单的答案是添加一个 z-index大于 .thumbnail:hover 的值span 悬停状态的值.

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -140px; /*position where enlarged image should offset horizontally */
left: -500px;
z-index: 51;
}

关于internet-explorer-8 - Z-index 在 IE8 中损坏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1290191/

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