Disable a list item in a Bootstrap list group



Use the .disabled class in Bootstrap to disable a list item in a list group in Bootstrap.

You can try to run the following code to disable a list item −

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>       <div class = "container">          <h2>Beverages</h2>          <div class = "list-group">             <a href = "#" class = "list-group-item">Gatorade</a>             <a href = "#" class = "list-group-item">Coca Cola</a>             <a href = "#" class = "list-group-item">Pepsi</a>             <a href = "#" class =" list-group-item disabled">Sting</a>          </div>       </div>    </body> </html>
Updated on: 2020-06-12T21:34:22+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements