html - Disable a link in Bootstrap -


the first example didn't work. need have list disable links? or wrong first demo?

<a class="disabled" href="#">disabled link</a> 

<ul class="nav nav-pills">   ...   <li role="presentation" class="disabled"><a href="#">disabled link</a></li>   ... </ul> 

https://jsfiddle.net/7y0u2amy/

i think need btn class.
this:

<a class="btn disabled" href="#">disabled link</a> 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -