CSS z-index 问题

发布于 2024-09-09 08:32:28 字数 303 浏览 2 评论 0原文

我对 2 个 div 标签进行了以下设置:

<div id='div1' style='position: absolute; z-index: 2;'>

</div>
<div id='div2' style='z-index: 999;'>

</div>

问题是第二个 div 标签包含一个不可单击的链接,这意味着 intiail div 标签(或 DIV1)位于其顶部,阻止我单击 div2。

在搞乱了一段时间后我找不到解决这个问题的方法......

I have the following setup on 2 div tags:

<div id='div1' style='position: absolute; z-index: 2;'>

</div>
<div id='div2' style='z-index: 999;'>

</div>

The problem is tha the second div tag contains a link which is not clickable, meaning that the intiail div tag (or DIV1) is on top of it preventing me from being able to click div2.

I can't find a fix for this after messing with it for some time...

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

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

发布评论

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

评论(1

东京女 2024-09-16 08:32:28

CSS z-index 属性仅适用于定位元素。因此,您需要将 position:relative; 分配给您的 div2

The CSS z-index property only works on positioned elements. So you will need to, for example, assign position: relative; to your div2.

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