IE7 中的 z 顺序问题

发布于 2024-09-18 17:29:17 字数 212 浏览 7 评论 0原文

Z 索引问题。

div class="menu"...
    -----contain----
div...

div class="flash"...
    -----contain----
div...

在 Firefox 中,菜单位于 Flash 容器上方。很好。 但在 IE7 中,Flash 位于菜单之上。当菜单打开(显示)时。

Z-index problem.

div class="menu"...
    -----contain----
div...

div class="flash"...
    -----contain----
div...

In firefox the menu is over the flash contain. it's good.
but in IE7 the flash is over the menu. when menu is open(display).

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

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

发布评论

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

评论(2

橘和柠 2024-09-25 17:29:17

这是因为 Flash 作为插件嵌入到网站中。某些平台上的某些浏览器(例如较新的 Firefox、Safari)可以处理插件标签上的 z 索引(例如对象或嵌入),而其他浏览器则不能(例如较旧的 Firefox、IE)。这是因为对于浏览器来说,插件是一个外部进程,它不是网站 DOM 的真实部分。

简短的回答:除了不使用闪光灯之外,您对此无能为力。

This is because Flash is embedded as a plugin into a web-site. Some browsers on some platforms (like newer Firefoxes, Safari) can handle z-indexes on plugin-tags (like object or embed), others can't (like older Firefoxes, IE). This is because for the browser the plugin is an external process, which is not a real part of the DOM of the web-site.

Short answer: you can't do anything about this, except of not using flash.

So要识趣 2024-09-25 17:29:17

objectembed 标记上设置 wmode="transparent"。然后确保您的菜单具有比闪存文件更高的 z-index。

如果 IE7/IE6 是问题所在,您可能正在处理非常常见的 IE7 z-index 错误

Set wmode="transparent" on both the object and embed tags. Then ensure your menu has a higher z-index than the flash file.

If IE7/IE6 is is the issue, you might be dealing with the very common IE7 z-index bug.

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