使用 z-index 进行相对定位
我有2个div。第二个在第一个之下。
第二个 div 有 z-index: -1;顶部:-20px;位置:相对。现在我想将一些链接(a-tag)放入第二个div:
test
。现在我看到了我的链接,但它处于非活动状态。我无法点击它。当我删除 z-index: -1
时它就起作用了。怎么了?
I have 2 divs. Second is under first.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
负 z 索引可能会出现问题。我会给顶部 div 更高的 z-index。你最好有这样的东西:
你的链接应该是可点击的,如果它们当然是可见的。
A negative z-index can behave buggy. I would give the top div a higher z-index. You can better have something like this:
You're links should be clickable, if they are visible of course.