- 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 Bootstrap badges in active states of list navigation
Place <span class = "badge"> to active links to set Bootstrap badges in active states of pill.
You can try to run the following code to achieve this −
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> <h4>Active State in navigations</h4> <ul class = "nav nav-pills nav-stacked" style = "max-width: 260px;"> <li class = "active"> <a href = "#"> <span class = "badge pull-right">29</span> Home </a> </li> <li><a href = "#">Profile</a></li> <li> <a href = "#"> <span class = "badge pull-right">9</span> Messages </a> </li> </ul> </body> </html>
- Related Articles
- Set Bootstrap badges in active states of pill
- Active Nav States in Bootstrap
- Bootstrap Badges
- Add badges component to Bootstrap list group item
- Set active state for Bootstrap Buttons
- Bootstrap Validation States
- Add a background color to the active list item in a Bootstrap list group
- Bootstrap Form Control States
- Bootstrap active Contextual class
- How to make active tab in navigation menu using HTML CSS & JavaScript?
- How to add an active class on click event in a custom list group in Bootstrap?
- Create a tabbed navigation menu with Bootstrap
- Set warning action for a list item in a list group with Bootstrap
- Set danger action for a list item in a list group with Bootstrap
- Set important information for a list item in a list group with Bootstrap

Advertisements