Syntax error Add badges component to Bootstrap list group item

Add badges component to Bootstrap list group item



Add the badges component to any list group item and it will automatically be positioned on the right. Just add <span class = "badge"> within the <li> element.

You can try to run the following code to implement 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>
      <h3>Tutorials</h3>
      <ul class = "list-group">
         <li class = "list-group-item">Programming</li>
         <li class = "list-group-item">Web Development</li>
         <li class = "list-group-item">Networking</li>
         <li class = "list-group-item">
            <span class = "badge">New</span>
            Database
         </li>
         <li class = "list-group-item">SAP</li>
         <li class = "list-group-item">
            <span class = "badge">New</span>
            Academic
         </li>
      </ul>
   </body>
</html>
Updated on: 2020-06-12T20:08:19+05:30

453 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements