IE8 Z-Index 绝对位置
我在 div 中有一个锚点,覆盖了 div 的所有内容。问题是,当您将鼠标悬停在任何非空白区域(例如图像或某些文本)上时,IE8 会忽略该链接: http://jsfiddle.net/jf7xf/
我需要将哪些 CSS 应用于哪些元素才能使 IE8 的锚点覆盖任何同级元素?
I have an anchor within a div overlaying all the contents of the div. The problem is that IE8 is ignoring the link when you hover over any non-white-space (e.g. an image or some text): http://jsfiddle.net/jf7xf/
What CSS do I need to apply to what elements to make IE8 have the anchor overlay any sibling elements?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过大量实验,我发现要在 IE8 中覆盖锚点,我必须将图像放入锚点中。我使用了 1x1 透明像素,将宽度和高度设置为 100%,它可以工作!耶!
http://jsfiddle.net/jf7xf/44/
After a lot of experimentation, I have found that to overlay the anchor in IE8 I have to place an image into the anchor. I have used a 1x1 transparent pixel, set the width and height as 100% and it works! Yay!
http://jsfiddle.net/jf7xf/44/