- 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
Add a background color to the active list item in a Bootstrap list group
Use the .active class to add gray background color to the active list item in a list group in Bootstrap.
You can try to run the following code to add background color to the active list item −
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> <div class = "container"> <h2>Features of Java</h2> <div class = "list-group"> <a href = "#" class="list-group-item active">Interface</a> <a href = "#" class="list-group-item">Multi-threading</a> <a href = "#" class="list-group-item">Packages</a> <a href = "#" class="list-group-item">Collection</a> <a href = "#" class="list-group-item">Serialization</a> </div> </div> </body> </html>
- Related Articles
- Add badges component to Bootstrap list group item
- Disable a list item in a Bootstrap list group
- Add a gray background color to the active link in a default Bootstrap navbar
- Bootstrap list-group-item class
- 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
- Set success action for a list item in a list group with Bootstrap
- How to add an active class on click event in a custom list group in Bootstrap?
- Item text inside the list group in Bootstrap
- Add HTML Content to Bootstrap List Group
- Add a grey background color to the Bootstrap 4 card
- Add a light grey background color to the Bootstrap 4 card
- How to add a list item in HTML?
- Add a blue background color to simulate a pressed button in Bootstrap

Advertisements