IE 7 导航下拉菜单中的 z-index 问题

发布于 2024-11-19 21:41:37 字数 259 浏览 2 评论 0原文

谁能告诉我为什么在 IE 8 上主(顶部)导航子菜单(特别是“Master Cleanse”下拉菜单)隐藏在本页的侧边栏和内容框下方?: http://therawfoodsite.com/newsite/store/

似乎在所有其他浏览器中都能正常工作(当然)并且我有 z-index 设置正确...IE 只是不喜欢它。任何帮助都会很棒。谢谢。

Can anyone tell me why on IE 8 the main (top) navigations sub-menues (specifically on the "Master Cleanse" dropdown) get hidden under the sidebar and content boxes on this page?: http://therawfoodsite.com/newsite/store/

Seems to work fine in all other browsers (of course) and I have the z-index setup correctly...IE just doesn't like it. Any help would be awesome. Thanks.

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

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

发布评论

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

评论(1

独留℉清风醉 2024-11-26 21:41:37

您的页面被强制进入“IE7 模式”。检查页面返回的 HTTP 响应标头:

HTTP/1.1 200 OK
..
X-UA-Compatible: IE=EmulateIE7
..

通过删除该 HTTP 标头,您可以轻松解决 IE8/9 中的问题。

如果这不是一个选项,或者您需要支持正版 IE7。

.menu-main-container 上,添加 position:relative; z 索引:51。

如果您想了解有关此 IE6/7 错误的更多信息,请参阅: IE7 Z-Index 问题 - 上下文菜单

Your page is being forced into "IE7 Mode". Check the HTTP response headers returned by your page:

HTTP/1.1 200 OK
..
X-UA-Compatible: IE=EmulateIE7
..

You can easily fix your problem in IE8/9 by removing that HTTP header.

If that's not an option, or you need to support genuine IE7..

On .menu-main-container, add position: relative; z-index: 51.

If you'd like more information about this IE6/7 bug, see: IE7 Z-Index issue - Context Menu

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