- 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
Bootstrap list-group-item class
Use the list-group-item class to add an item to each <li> element in the list group.
You can try to run the following code to implement the list-group-item class
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> <h2>Tools</h2> <p>The following are the tools:</p> <ul class = "list-group"> <li class = "list-group-item">Online Compiler</li> <li class = "list-group-item">Image Editor</li> <li class = "list-group-item">Image Optimizer</li> <li class = "list-group-item">Whiteboard</li> </ul> </body> </html>
- Related Articles
- Bootstrap list-group class
- Disable a list item in a Bootstrap list group
- Add badges component to Bootstrap list group item
- Item text inside the list group in 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
- Set success action for a list item in a list group with Bootstrap
- Add a background color to the active list item in a Bootstrap list group
- Bootstrap btn-group class
- Bootstrap class input-group
- Bootstrap Collapsible list group
- Bootstrap 4 .card-group class
- Bootstrap class input-group-sm
- Bootstrap class input-group-xs

Advertisements