防止一个元素覆盖另一个元素

发布于 2024-10-31 00:41:08 字数 44 浏览 1 评论 0原文

我有一个固定的标题。当我滚动时,某些元素会覆盖标题。我该如何防止这种情况?

I have a fixed header. As I scroll, certain elements cover the header. How do I prevent this?

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

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

发布评论

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

评论(3

临走之时 2024-11-07 00:41:08

我可以立即想到两个解决方案。您可以为 #headercontainer 元素指定 z-index CSS property...

#headercontainer {
    /* ... other CSS ... */
    z-index: 1000;
}

...或者您可以按照我认为应该完成的方式进行...

#headercontainer {
    /* ... other CSS ... */
    position: fixed;
    top: 0px;
}

#contentcontainer {
    /* ... other CSS ... */
    margin-top: 125px; /* this should be at least the height of the header */
}

在第二个解决方案中,您不必担心哪个元素悬停在哪个其他元素上。 #contentcontainer 元素正确下推到 #headercontainer 元素下方,以便它们没有重叠。

There are two solutions I can think of quickly off the top of my head. You can either give the #headercontainer element a z-index CSS property...

#headercontainer {
    /* ... other CSS ... */
    z-index: 1000;
}

... or you can do it the way I think it should be done...

#headercontainer {
    /* ... other CSS ... */
    position: fixed;
    top: 0px;
}

#contentcontainer {
    /* ... other CSS ... */
    margin-top: 125px; /* this should be at least the height of the header */
}

In the second solution, you don't have to worry about which element is hovering over which other element. The #contentcontainer element is properly pushed down under the #headercontainer element so that they have no overlap.

伪装你 2024-11-07 00:41:08

您应该为 div 设置 z-index:

#headercontainer {
    z-index:1;
}
#contentcontainer {
    z-index:-1;
}

添加上述行应该使标头优先于内容容器。

You should set the z-index for the divs:

#headercontainer {
    z-index:1;
}
#contentcontainer {
    z-index:-1;
}

Adding the above lines should give your header priority over the content container.

迷迭香的记忆 2024-11-07 00:41:08

#headercontainer 提供更高的 z-index:

#headercontainer {
    z-index: 10;
}

Give the #headercontainer a higher z-index:

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