z-index 和锚标记
我有一个具有相对位置和 z-index :-1
的 div。我已将 放在上面 分区但当我将位置
:relative
给其父级时,似乎 不起作用。当改变那个 位置到绝对它开始工作。谁能告诉我为什么会发生这种情况。 我希望该链接能够正常工作,并尽可能保留其父级 div 位置
:相对
和 z-index:-1;
I have a div with position relative and z-index :-1
. and I have placed <A>
over that
div. But it seems <a>
is not working when i give postion :relative
to its parent. when change that
position to absolute it starts working. Could anybody tell me why this is happening.
I want that link to work and as far as possible need to keep its parent div
position :relative
and z-index:-1;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
负 z-index 导致链接不起作用:
请参阅此 fiddle
Negative z-index cause a links to not work:
See this fiddle
position:relative
将使 z-index 相对于父级。http://www.w3.org/TR/CSS21/ visuren.html#propdef-z-index
position:relative
will make the z-index relative to the parent.http://www.w3.org/TR/CSS21/visuren.html#propdef-z-index