2017-04-01 58 views
0

當我有一個「禁用」類時,我需要將遊標指針變成「不允許」的錨點。 我試了下,但沒有看。錨點鼠標指針不能使用CSS和引導

我在做什麼錯了?

鏈接測試:https://plnkr.co/edit/isoqoP2EbKjWb9fkfQpN?p=preview

標記:

<div class="container"> 
    <ul class="nav nav-pills nav-stacked lefttabs well"> 
     <li><a>Home</a> 
     </li> 
     <li><a class="disabled">Perfil</a> 
     </li> 
    </ul> 
</div> 

CSS:

/* Styles go here */ 
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; } 

.disabled { 
    color: #900; 
    cursor: not-allowed; 
    pointer-events: none; 
    text-decoration: none; 
} 

回答

1

更改你CSS代碼:

.nav, .pagination, .carousel, .panel-title a { cursor: pointer; } 

.disabled { 
    color: #900; 
    cursor: not-allowed; 
    text-decoration: none; 
} 

您必須刪除pointer-events: none;,這會停止光標更改(或將其全部刪除),因此保持不變,即使您設置了光標。

+0

謝謝,就是這樣。 –

+0

@LuizAlves隨時。 –