另一个 IE7 Z-Index 问题(在表格单元格中)

发布于 2024-12-09 10:10:39 字数 374 浏览 0 评论 0原文

我知道有很多关于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难遇 2024-12-16 10:10:39

尝试删除 .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 work

here is another: add .c { z-index: 10000 } and .c:hover { z-index: 10001 }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文