- 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 warning Contextual class
The Bootstrap warning contextual class indicates a warning action.
You can try to run the following code to implement the .warning class
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Table</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> <table class = "table"> <thead> <tr> <th>Subject</th> <th>Marks</th> <th>Student</th> </tr> </thead> <tbody> <tr class = "success"> <td>Programming</td> <td>90</td> <td>Amit</td> </tr> <tr class = "active"> <td>Web Dev</td> <td>92</td> <td>Yuvraj</td> </tr> <tr class = "warning"> <td>Science</td> <td>95</td> <td>Sachin</td> </tr> </tbody> </table> </body> </html>
- Related Articles
- Bootstrap active Contextual class
- Bootstrap success Contextual class
- Bootstrap danger Contextual class
- Bootstrap alert-warning class
- Bootstrap .has-warning class
- Bootstrap .btn-warning class
- Bootstrap 4 .border-warning class
- Usage of Bootstrap class panel-warning
- Bootstrap Contextual classes
- Bootstrap 4 Button .btn-outline-warning class
- Style Bootstrap 4 card with bg-warning class
- Contextual button for informational alert messages with Bootstrap
- Create a yellow button (warning) with Bootstrap
- Add the yellow label (stating warning) with Bootstrap
- How to create warning notification alerts in Bootstrap?

Advertisements