CSS下拉菜单隐藏在内容IE7后面 [英] CSS Dropdown menu hidden behind content IE7

查看:112
本文介绍了CSS下拉菜单隐藏在内容IE7后面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个下拉菜单,当在IE7中查看时,被隐藏在主页面内容的后面。我试过改变z-index值,但没有运气。我也试过从这个网站的其他主题的建议,但没有一个工作。

I have a dropdown css menu that gets gets hidden behind the main page content when viewed in IE7. I've tried changing z-index values but have had no luck. I've also tried suggestions in other topics from this site but none have worked.

该页面可以在这里找到: www.melbournedodgeball.com.au/dodgeball2012/about

the page can be found here: www.melbournedodgeball.com.au/dodgeball2012/about

任何帮助将是非常感谢

推荐答案

CSS规范的Z-index段落说,新的堆栈上下文只创建一个z-index而不是auto的定位内容。

The CSS spec's paragraph on Z-index says that new stacking context is only created for positioned content with a z-index other than auto.

您有 li 里面 #nav 位置:相对,显然是IE将其解释为一个新的堆叠上下文。

You have the li inside #nav with a position:relative, an apparently IE interprets this as a new stacking context.

尝试这样:

#nav li {
    display: block;
    position: relative;
    z-index: 1;         // force IE to recognize stack at this point
}

这篇关于CSS下拉菜单隐藏在内容IE7后面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆