IE7 Z 索引问题
问题站点:www.basing.com/problem/index.html
如果您将鼠标悬停在在左侧列表中的项目中,您应该会看到一个漂亮的弹出窗口,显示文本的其余字符。
然而,这在 IE 7 中不起作用。有谁知道为什么不可以,或者建议我如何解决这个问题?谢谢。
Problem site: www.basing.com/problem/index.html
If you hover over the items in the list on the left you should see a nice popup showing the remaining characters of the text.
However, this doesn't work in IE 7. Does anyone have any ideas why not, or suggestions on how I could go about fixing this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IE <= 7 上有一个关于 z-index 的已知错误,当您使用 z-index 混合绝对和相对定位 DOM 元素时,您必须反转 z-index 属性,以便较低的将出现在顶部更高。
请参阅http://brenelz.com/blog/squish-the- internet-explorer-z-index-bug 或 http ://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7 另一种解决方案。
互联网上大约有一百万篇关于此错误的帖子。
There is a known bug about z-index on IE <= 7, when you use z-index when you mix absolute and relative positionned DOM elements you have to invert the z-index properties so that the lower will appear on top of the higher.
See http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug or http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7 for another solution.
There is about a million post about this bug on the internet.