- 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
Set warning action for a list item in a list group with Bootstrap
To set warning action for a list item in a list group, use the .list-group-item-warning 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>Demo</h1> <ul class = "list-group"> <li class = "list-group-item"> <p class = "list-group-item-text">A</p> </li> <li class = "list-group-item"> <p class = "list-group-item-text">B</p> </li> <li class = "list-group-item"> <p class = "list-group-item-text list-group-item-warning">C</p> </li> <li class = "list-group-item"> <p class = "list-group-item-text">D</p> </li> </ul> </div> </body> </html>
- Related Articles
- Set success 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
- Disable a list item in a Bootstrap list group
- Bootstrap list-group-item class
- Add a background color to the active list item in a Bootstrap list group
- Item text inside the list group in Bootstrap
- Set warning action with orange outlined Bootstrap 4 Button
- Add badges component to Bootstrap list group item
- Add a yellow background color to an element to set warning action with Bootstrap
- Create a bordered list group in Bootstrap
- Create a list group heading in Bootstrap
- Bootstrap Collapsible list group
- Bootstrap list-group class
- Indicate a warning action to a particular table row or cell with Bootstrap

Advertisements