具有绝对位置的 z 索引与 IE

发布于 2024-11-24 20:49:06 字数 282 浏览 1 评论 0原文

有人可以帮我解决我的菜单遇到的这个问题吗? 该问题仅出现在兼容模式下的 IE 中。我的菜单的绝对位置和 z 索引为 99999999,但菜单仍然隐藏在内容后面。 请检查:

http://www.tomasdostal.com/projects/modul16/draft2 /?page=buildings

感谢您的建议

Can someone please help me with this problem i am having with my menu ?
THe problem is only in IE in compatibility mode. I have the menu with position absolute and z-index 99999999 but still the menu is hidden behond the content.
Please check :

http://www.tomasdostal.com/projects/modul16/draft2/?page=buildings

Thanks for any advice

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ゃ人海孤独症 2024-12-01 20:49:06

我的菜单具有绝对位置和 z-index 99999999

您需要使用更高 z-index

 

 

..只是在开玩笑。

兼容模式下的 IE = IE7。

IE7 存在 z-index 的已知错误,请参阅:IE7 Z-Index 问题 - 上下文菜单

在这个特定实例中,解决该问题的一种方法是将 z-index: 1 添加到

是菜单的父级。

I have the menu with position absolute and z-index 99999999

You need to use an even higher z-index!

 

 

..just kidding.

IE in compatibility mode = IE7.

IE7 has known bugs with z-index, see: IE7 Z-Index issue - Context Menu

In this specific instance, one way to fix it is to add z-index: 1 to the <div class="grid_3"> that is a parent of your menu.

入画浅相思 2024-12-01 20:49:06

Z-index 仅适用于绝对定位(元素当前相对于其父元素定位)。将以下 CSS 添加到 .menu_wrap。

position: absolute;
top: 0;
left 0;

Z-index only works with absolute positioning (the element is currently positioned relative to it's parent element). Add the following CSS to .menu_wrap.

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