另一个 IE7 Z-Index 问题(在表格单元格中)
我知道有很多关于 ie7 z-index 问题的问题, 我看了一下这些论文,似乎都没有解决我的问题,所以这里还有另一个 IE7 z-index 问题:
我有一个表格,其中的单元格包含长文本, 我想在悬停单元格时以纯 CSS 方式显示全文(我真的很想避免另一个 js 修复,因为由于表很大,该应用程序在 IE7 上的客户端已经相当慢)。
我用这种方法让它在 FF/Chrome/IE8/IE9 上工作: http://jsfiddle.net/Zppy4/15/ 但我无法让它与 IE7 一起工作。
如果有人有一个神奇的想法,欢迎任何帮助:)
提前致谢
I know there's a lot of questions about ie7 z-index issues,
I took a look at theses and none of them seems to solve my problem so here's yet another IE7 z-index question:
I have a table with cells containing long texts,
I'd like to show the full text when hovering a cell, in a pure CSS way (I'd really like to avoid another js fix because the app is already pretty slow client side with IE7 because of big tables).
I got it working on FF/Chrome/IE8/IE9 with that method:
http://jsfiddle.net/Zppy4/15/
but I can't get it to work with IE7.
If someone have a magic idea, any help is welcome :)
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试删除
.c {position:relative }
并添加.c:hover {position:relative }
。未经测试,但认为这应该在这里工作是另一个:添加
.c { z-index: 10000 }
和.c:hover { z-index: 10001 }
try removing
.c { position: relative }
and adding.c:hover { position: relative }
. Not tested but think this should workhere is another: add
.c { z-index: 10000 }
and.c:hover { z-index: 10001 }