- 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
Item text inside the list group in Bootstrap
To set item text inside the list group, use the .list-group-item-text class.
You can try to run the following code to implement the .list-group-item-text 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> <div class = "container"> <h1>Cars</h1> <ul class = "list-group"> <li class = "list-group-item"> <h3 class = "list-group-item-heading">Hyundai</h3> <p class = "list-group-item-text">i10</p> <p class = "list-group-item-text">i20</p> </li> <li class = "list-group-item"> <h3 class = "list-group-item-heading">Volkswagen</h3> <p class = "list-group-item-text"></p> <p class = "list-group-item-text">Vento</p> <p class = "list-group-item-text">Polo</p> </li> </ul> </div> </body> </html>
- Related Articles
- Bootstrap list-group-item class
- Disable a list item in a Bootstrap list group
- Add badges component to Bootstrap list group item
- Add a background color to the active list item in a Bootstrap list group
- Set success action for a list item in a list group with 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
- Bootstrap Collapsible list group
- Bootstrap list-group class
- Link Bootstrap List Group Items
- Create a bordered list group in Bootstrap
- Create a list group heading in Bootstrap
- Add HTML Content to Bootstrap List Group
- How to add badge to list group in Bootstrap?

Advertisements