- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set disabled links with Bootstrap
For each of the .nav classes, if you add the .disabled class, it will create a gray link that also disables the :hover state.
You can try to run the following code to set disabled links −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body style = "background: #FADBD8;"> <h2>Website</h2> <ul class = "nav nav-tabs nav-justified"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">Team</a></li> <li><a href = "#">Authors</a></li> <li><a href = "#">MVPs</a></li> </ul> <h2>Website (With disabled links)</h2> <ul class = "nav nav-tabs nav-justified"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">Team</a></li> <li class = "disabled"><a href = "#">Authors (disabled link)</a></li> <li><a href = "#">MVPs</a></li> </ul> </body> </html>
Advertisements