gpt4 book ai didi

css - IE z-index 和位置问题

转载 作者:行者123 更新时间:2023-11-28 09:20:59 30 4
gpt4 key购买 nike

我有 IE 8 和 IE 7 z-index, position 等问题。我在 http://jsfiddle.net/KeEPF/ 中举了这些问题的例子。 .如果您通过 Chrome、Mozilla 或其他浏览器查看它,您会注意到大图像上有链接(带有链接 #imagemap2)。在 IE8 和 IE7 上,此图像始终位于顶部,您无法单击链接。

我该如何解决这个问题?

代码如下:

<div id="splashbar"> 
<div id="left_content_text">
<img src="#" alt="facebook" />
<h2> <a href="" style="color:#fff; text-decoration:none;">test</a></h2>
Lorem ipsum dolor sit amet, con tetur adipiscing elit. Etiam tincidu molestie justo, vitae dignissim me scelerisque vel. Proin vitae nibh arcu vulpu tate vehicula.<br/>
</div>
<div id="splashimages">
<a href="#full_header_link" class="full_header_link">
<img width="738" height="191" src="tet" class="attachment-post-thumbnail wp-post-image" alt="header_forside" title="header_forside" /> </a>
<a href="#imagemap1" style="width:100px;height:100px;left:0px; top:10px" class="imagemap_header_link"> </a>
<a href="#imagemap2" style="width:100px;height:100px;right:0px; top:10px" class="imagemap_header_link"></a>
</div>
<div class="clear">
</div>
</div>
#splashbar {
position: relative;
zoom: 1;
z-index: 2;
}
#splashimages {
position: relative;
top: 0;
right: 0;
z-index: 2;
zoom: 1;
}
#splashimages img {
z-index: -5;
position: absolute;
right: 0;
top: 0;
visibility: visible;
display: block;
height: 173px;
zoom: 1;
}
#splashimages .imagemap_header_link {
position: absolute;
display: block;
z-index: 990;
visibility: visible;
zoom: 1;
}

最佳答案

它可以通过一些作弊来修复..

IE 不喜欢您的 2 个“图像 map ”链接上没有背景这一事实,但我认为您希望它们透明,因为这是 map 的想法

这对我有用:

#splashimages .imagemap_header_link {
position: absolute;
width: 100px;
height: 100px;
top: 10px;

background: #dad; /* any color */
filter:alpha(opacity=0); /* make it transparent in IE again */
opacity: 0; /* make it transparent for good browsers */
}

Working Example

添加:为了记录,工作示例已删除所有不必要的额外属性,无需在任何 div 上设置 zoom: 1;,绝对定位的 div 已经具有“hasLayout”

关于css - IE z-index 和位置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6174548/

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