课程
/前端开发
/Bootstrap
/玩转Bootstrap(基础)
为什么鼠标放上去没有cursor: not-allowed;禁用样式,虽然不能点击了 但鼠标还是箭头
2014-12-18
源自:玩转Bootstrap(基础) 3-23
正在回答
下面这样设置就可以了:
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>
这样就能将两个属性同时应用上了。
weixin_慕仙6466035
因为设置了 pointer-events:none; 把所有点击事件全部禁掉了,所有cursor 也没有了
遇到了同样的问题,提问了也没人回答。请问楼主搞懂了没?
慕粉0724423299
qq_再见已枉然_0
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,并且能够独立定制出适合自己的Bootstrap
2 回答不用点击当鼠标放上去直接显示下拉菜单
1 回答怎么能把鼠标点击过的按钮,样式变为active
5 回答禁用状态按钮的鼠标指针形状?
3 回答鼠标悬浮不亮?
1 回答bootstrap的下拉菜单可不可以鼠标放上去 就显示下拉内容