我有一个引导按钮
<button class="btn btn-primary">Login</button>
我希望此按钮在未禁用时具有光标指针(手)而不是默认指针(箭头)。
禁用按钮的属性由Angular组件中的变量管理
<button class="btn btn-primary" [disabled]="user==undefined">Login</button>
答案 0 :(得分:5)
尝试以下CSS规则:
button:not(disabled){
cursor: pointer
}