z-index 和绝对位置的问题

发布于 2024-12-24 18:34:47 字数 252 浏览 1 评论 0原文

我又遇到了 z-index 的问题。 请检查页面

http://webakery.asia/projects/valentine/

在右侧我绝对有定位带有花朵的图片,但它们与导航重叠,最终影响导航中链接的功能。我想把那些花藏在导航后面。 我一直在玩弄 z 索引,但仍然找不到方法。有人可以帮忙吗?

谢谢

I have problem with z-index again.
Please check page

http://webakery.asia/projects/valentine/

On the right side I have absolutely positioned picture with flowers, but they are overlaping navigation and eventually affect functionality of links in navigation. I want to hide those flowers behind navigation.
I have been playing around with z-indexes, but still cannot figure out the way. Can anyone help please?

Thanks

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

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

发布评论

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

评论(2

执笔绘流年 2024-12-31 18:34:47

您必须将 sectionz-index: 100 更改为 z-index 小于 50(您的导航 z-index),

section {
    margin: 0 auto;
    position: relative;
    text-align: left;
    width: 960px;
    z-index: 20;
}

例如将 position:relative 添加到您的 nav

nav {
    background: url("../images/bg-menu.png") repeat-x scroll 0 0 transparent;
    min-height: 66px;
    position: relative;
    z-index: 50;
}

You have to change your z-index: 100 to z-index less than 50 (your navigation z-index) for section, e.g.

section {
    margin: 0 auto;
    position: relative;
    text-align: left;
    width: 960px;
    z-index: 20;
}

and add position: relative to your nav

nav {
    background: url("../images/bg-menu.png") repeat-x scroll 0 0 transparent;
    min-height: 66px;
    position: relative;
    z-index: 50;
}
栩栩如生 2024-12-31 18:34:47

我认为 div.flowers 应该在你的标签之外,

试试这个..在 -1 部分创建 z-index 并看看一切都在你的导航后面。

我认为你应该将 div.flowers 移到你的块之外,然后独立分配它的 z-index 。事实上,你可以整天改变它,但重要的 z-index 属于

i think div.flowers should be outside of your tag

try this.. make the z-index on section -1 and look how everything goes behind your nav.

i think you should move div.flowers outside of your block and then assign its z-index independently. As is, you can change it all day, but the z-index that matters belongs to

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