CSS z-index 问题
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 yourdiv2
.