gpt4 book ai didi

html - 表格单元格内部时的 CSS z-index 问题

转载 作者:太空狗 更新时间:2023-10-29 14:08:47 27 4
gpt4 key购买 nike

我有一个日历/表格,当您将鼠标悬停在每一天上时,我们都会有一个小弹出窗口,它绝对位于每个单元格下方。

为了完成这项工作,我添加了一个 <div style="relative" />每个细胞内。在 FF 中工作正常,但当您在 ​​IE 中将鼠标悬停在它上面时,z-index 会被忽略。

enter image description here

我已经尝试了所有我能想到的技巧来让它在 IE 7 + 8 中工作。

最佳答案

.wrapper div 上的 td 元素内不需要所有单独的 z-indexes(它们都可以设置为 1 我相信),并设置这些属性:

/* add these two to your selector */
#calendar tbody td {
position: relative;
z-index: 1;
}

/* create this new selector */
#calendar tbody td:hover {
z-index: 2;
}

使用 firebug 和 IE 的开发者工具,在我看来它可以在 Firefox 和 IE7 和 8 中工作。

关于html - 表格单元格内部时的 CSS z-index 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10385030/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com