- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 class
The purpose of list-group class is to render complex and customized content in lists.
You can try to run the following code to implement the list-group class in Bootstrap −
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>Tutorials</h2> <p>The following are the tutorials:</p> <ul class = "list-group"> <li class = "list-group-item">HTML5</li> <li class = "list-group-item">JavaScript</li> <li class = "list-group-item">jQuery</li> </ul> </body> </html>
- Related Articles
- Bootstrap list-group-item class
- 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
- Bootstrap btn-group-vertical class
- Bootstrap class btn-group-vertical
- Bootstrap input-group-btn class
- Bootstrap class input-group-lg
- Link Bootstrap List Group Items
- Usage of Bootstrap .btn-group-* class
- list-unstyled class in Bootstrap
- list-inline class in Bootstrap

Advertisements