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

Live Demo

<!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>

Updated on: 12-Jun-2020

77 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements