下拉列表的 z-index 不会与 iframe 一起运行

发布于 2024-12-21 13:15:39 字数 872 浏览 2 评论 0原文

我在页面上嵌入了谷歌日历(位于 iframe 中),

目前我正在尝试在 Chrome 中解决这个问题,但我希望它能够在所有情况下工作。

这是一般结构的简短摘要(实际代码更复杂)

<header>
<ul id="nav">
  <li>  <ul class="drop_down">
            <li>Nav item</li>
            <li>nav item</li>
        </ul>
    </li>
    <li>  <ul class="drop_down">
            <li>Nav item</li>
            <li>nav item</li>
        </ul>
    </li>
</ul>
</header>
<iframe />

iframe 的目的是重叠一点并出现在它的前面。下拉菜单应该出现在 iframe 前面。所以 z-index 层应该是从后到前:

  1. header (只有背景图像才是最重要的)
  2. iframe
  3. drop down

iframe menu

我似乎无法做到这一点。我尝试在所有涉及的事情上使用position:absolute来非常具体。

这是问题页面的实时链接: 编辑:已删除链接,因为它与工作相关并已解决

预期的菜单行为位于该网站的主页上。

有什么建议吗?

I have an embedded google calendar on a page (which is in an iframe)

I'm trying to solve this in Chrome at the moment, but I'd prefer it to work in everything.

Here's a short summary of the general structure (actual code is more convoluted)

<header>
<ul id="nav">
  <li>  <ul class="drop_down">
            <li>Nav item</li>
            <li>nav item</li>
        </ul>
    </li>
    <li>  <ul class="drop_down">
            <li>Nav item</li>
            <li>nav item</li>
        </ul>
    </li>
</ul>
</header>
<iframe />

The iframe is intended to overlap the a little and appear in front of it. The drop down menu should then appear in front of the iframe. So the z-index layers should be from back to front:

  1. header (just the background image is all that matters)
  2. iframe
  3. drop down

iframe menu

I can't seem to make this happen. I tried being very specific using position:absolute on everything involved.

Here's a live link to the problem page:
Edit: Removed link since it's work related and solved

Expected menu behavior is on the homepage of that site.

Any suggestions?

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

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

发布评论

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

评论(1

罪歌 2024-12-28 13:15:39
Take z-index:1 off #header
Set #nav li ul z-index:100
Set the iframe z-index:50

问题是你的 iframe 的 zindex 是 1000,而你的菜单是 z-index:1

Take z-index:1 off #header
Set #nav li ul z-index:100
Set the iframe z-index:50

The problem is that your zindex for the iframe is 1000, while your menu was z-index:1

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