div添加cursor:pointer;失效问题。

Posted gzy-tw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div添加cursor:pointer;失效问题。相关的知识,希望对你有一定的参考价值。

如果你不小心给其它盒子设置了z-index属性显示在最上层而又没有将该盒子进行隐藏。

<style>
.bottom {
position: absolute;
width:100px;
height:100px;
background:pink;
cursor:pointer;
}
.top {
z-index:999;
width:200px;
height:200px;
background-color: transparent;
position: absolute;
}
</style>
<div class="top"></div>
<div class="bottom"></div>

那么这是给看到的盒子设置cursor属性时无效,将设置了z-index的最上层盒子设置display:none;,问题就得到解决。

以上是关于div添加cursor:pointer;失效问题。的主要内容,如果未能解决你的问题,请参考以下文章

解决手机(移动端)点击事件失效问题

position:absolute 的div 无法cursor:pointer 的问题

选择具有 css 属性 cursor:pointer 的 dom

鼠标常用样式(cursor)

CSS中cursor:pointer的作用

pointer-events: none;解决点击失效问题