首页 > 建站教程 > Div+Css >  禁用的鼠标样式css写法: cursor:not-allowed正文

禁用的鼠标样式css写法: cursor:not-allowed

    经常看到bootstrap等框架的按钮禁用时,鼠标移动到上面,会显示类似下面的禁用的鼠标样式:

cursor:not-allowed

    使用方法非常简单:
.btn{cursor: not-allowed;}
     但是,这里必须说明:跟 pointer-events 同时使用会影响cursor的形状,比如“pointer-events:none;cursor:not-allowed;”后, cursor:not-allowed 的鼠标形状不会改变为上图的鼠标样式,而只是变成了默认的鼠标箭头样式了。