在 IE 上发布到服务器时 Superfish 下拉菜单落后

发布于 2024-10-20 01:08:47 字数 77 浏览 4 评论 0原文

当我在 Visual Studio 上运行它时它很好,但如果部署到 IE 上的 Web 服务器,它就会落后。它与 Mozilla 完美配合。

Its fine when I run it on Visual Studio but then it goes behind if deployed to web server on IE. It works perfectly with Mozilla.

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

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

发布评论

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

评论(1

じее 2024-10-27 01:08:47

我发现 IE 的技术是通过它的 z-index 来取代并使 div 位于位置:相对。请参阅下面的代码示例。

给定这个 HTML。

<div id="header">
    <ul class="sf-menu"></ul>
    <div id="content"></div>
</div>

而且,CSS ..

#header{z-index:2;position:relative;
}
#content{z-index:1;position:relative;
}

那么 IE 中的 superfish 下拉列表现在应该始终位于内容之上。

I found that the technique with IE was to supersede via its z-index and making the div at position:relative. See code example below.

Given this HTML.

<div id="header">
    <ul class="sf-menu"></ul>
    <div id="content"></div>
</div>

And, the CSS..

#header{z-index:2;position:relative;
}
#content{z-index:1;position:relative;
}

Then the superfish dropdown in IE should now always be on top of content.

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