Internet Explorer图像覆盖链接

时间:2012-03-06 13:21:15

标签: html css internet-explorer internet-explorer-9

在接下来的页面中,我有一个链接和一个图像,图像覆盖了Internet Explorer中的链接,这意味着您无法单击它,但在Firefox中它可以按预期工作。

http://www.hughgrice.com/test/

为什么Internet Explorer表现不同,我该如何解决?

很抱歉不包含代码或JSFiddle,生成的代码有点乱,很难提取。

2 个答案:

答案 0 :(得分:1)

也许这篇文章有帮助吗?

https://stackoverflow.com/a/1664014/1234190

这是关于如何绝对定位< a>标签只能在IE9中的渲染内容上单击。

答案 1 :(得分:0)

您是否尝试过为链接和图片设置z-index css属性? 这样排序:

mydiv #link, mydiv2 #image{
   position:relative;
}
mydiv #link{
   z-index:2;
}
mydiv2 #image{
   z-index:1;
}