IE 7 导航下拉菜单中的 z-index 问题
谁能告诉我为什么在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的页面被强制进入“IE7 模式”。检查页面返回的 HTTP 响应标头:
通过删除该 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:
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
, addposition: relative; z-index: 51
.If you'd like more information about this IE6/7 bug, see: IE7 Z-Index issue - Context Menu