使用 z-index 进行相对定位

发布于 2024-10-16 05:51:30 字数 282 浏览 3 评论 0原文

我有2个div。第二个在第一个之下。

在此处输入图像描述

第二个 div 有 z-index: -1;顶部:-20px;位置:相对。现在我想将一些链接(a-tag)放入第二个div:test。现在我看到了我的链接,但它处于非活动状态。我无法点击它。当我删除 z-index: -1 时它就起作用了。怎么了?

I have 2 divs. Second is under first.

enter image description here

2nd div has z-index: -1; top: -20px; position: relative. Now I want to put some links(a-tag) into 2nd div: <a href="#">test</a>. Now I see my link but it's inactive. I can't click at it. When I remove z-index: -1 it works. What's wrong?

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

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

发布评论

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

评论(1

辞慾 2024-10-23 05:51:30

负 z 索引可能会出现问题。我会给顶部 div 更高的 z-index。你最好有这样的东西:

div.1 {
  position: relative;
  z-index: 3;
}
div.2 {
  position: relative;
  top: -20px
}

你的链接应该是可点击的,如果它们当然是可见的。

A negative z-index can behave buggy. I would give the top div a higher z-index. You can better have something like this:

div.1 {
  position: relative;
  z-index: 3;
}
div.2 {
  position: relative;
  top: -20px
}

You're links should be clickable, if they are visible of course.

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