为什么鼠标放上去没有cursor: not-allowed;禁用样式,虽然不能点击了 但鼠标还是箭头
下面这样设置就可以了:
pointer-events: auto!important; cursor: not-allowed!important;
我试过了是可行的,各位可以试试。
<style>
.printer_none {
pointer-events: none;
}
.cursor_none {
cursor: not-allowed;
}
</style>
<div class="printer_none ">
<input type="text" class="cursor_none " />
</div>
这样就能将两个属性同时应用上了。
因为设置了 pointer-events:none; 把所有点击事件全部禁掉了,所有cursor 也没有了
遇到了同样的问题,提问了也没人回答。请问楼主搞懂了没?
123
是由于设置了 pointer-events:none;所致。。。
http://www.w3chtml.com/css3/properties/user-interface/cursor.html
试试看,有的
cursor:no-drop|not-allowed
cursor:@cursor-disabled;
buttons.less
@cursor-disabled:not-allowed
variables.less
= =?我好像没有看到样式表有 cursor:not allowed
隔了一年了,我也遇到这个问题了,楼主你找到答案了吗?
是的,这是bootstrap的默认样式。