为什么 z-index 在 IE 中不起作用?

发布于 2024-12-06 13:28:28 字数 864 浏览 0 评论 0原文

我创建了一个带有下拉菜单的顶级菜单,但下拉菜单在 IE 中没有出现在前面。 Chrome、FF 和 Safari 运行良好。

我的代码如下所示:

<li id="search"><a href="#search" class="drop" >Search</a>
    <div class="drop2columns dropcontent">
        <div class="col_2">
            <ul>
                <li id="search_basic"><a href="#test1">Test1</a></li>
                <li id="search_advanced"><a href="#test2">Test2</a></li>
            </ul>   
        </div>
    </div>
</li>

css 文件如下所示:

#menu .drop2columns {width: 130px;}

#menu .col_2 {
    display:inline;
    float: left;
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    z-index: 9999;
}

#menu .col_2 {width:130px;}

我缺少什么?就像我说的,这只发生在 IE 上(版本 7,8 和 9)

I've created a top level menu with dropdowns but the drop down isn't coming to the front in IE. Chrome, FF, and Safari work great.

My code looks like this:

<li id="search"><a href="#search" class="drop" >Search</a>
    <div class="drop2columns dropcontent">
        <div class="col_2">
            <ul>
                <li id="search_basic"><a href="#test1">Test1</a></li>
                <li id="search_advanced"><a href="#test2">Test2</a></li>
            </ul>   
        </div>
    </div>
</li>

The css files look like this:

#menu .drop2columns {width: 130px;}

#menu .col_2 {
    display:inline;
    float: left;
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    z-index: 9999;
}

#menu .col_2 {width:130px;}

What am I missing? Like I said this only happens with IE (versions 7,8, and 9)

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

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

发布评论

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

评论(2

兲鉂ぱ嘚淚 2024-12-13 13:28:28

z-index 和 IE 始终是一场噩梦。

有几种解决方法,请参阅
http://brenelz.com/blog/squish-the- internet-explorer-z-index-bug/
对于其中之一。

z-index and IE was always a nightmare.

There's several workarounds about, see
http://brenelz.com/blog/squish-the-internet-explorer-z-index-bug/
for one of them.

谁的年少不轻狂 2024-12-13 13:28:28

z-index 在 Internet Explorer 中无法正常工作:定位元素会创建一个新的堆叠上下文,从 z-index0 开始。要解决此问题,您可以使父元素定位(例如,position:relative),并将其 z-index 设置为高于子元素的值。

z-index doesn’t work correctly in Internet Explorer: positioned elements create a new stacking context, starting with a z-index of 0. To get around this you can make the parent element positioned (e.g., position: relative), and set its z-index to a value higher than that of the child.

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