- 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
Add a red background color to an element to set danger action with Bootstrap
Use the .btn-danger class to set danger action for a button i.e. red background color to an element.
You can try to run the following code to implement danger action −
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"> <button type = "button" class = "btn btn-primary btn-block">Categories</button> </div> <div class = "container"> <a href = "#">Tech <span class="badge">95</span></a><br> <a href = "#">Entertainment <span class="badge">30</span></a><br> <a href = "#">Research <span class="badge">9</span></a><br> <a href = "#">Viral <span class="badge">20</span></a><br> <a href = "#">Sport <span class="badge">105</span></a> </div> <div class = "container"> <br><p>Do not click below:</p> <button type = "button" class = "btn btn-danger">Danger</button> </div> </body> </html>
- Related Articles
- Add a green background color to an element to set positive action with Bootstrap
- Add a yellow background color to an element to set warning action with Bootstrap
- Set negative action for Bootstrap 4 cards with red background color
- Add a blue background color to an element to set key stuff with Bootstrap
- Add a red border to an element in Bootstrap to indicate danger
- Set orange border on an element in Bootstrap to indicate danger
- Set danger action for a list item in a list group with Bootstrap
- Set the background color of an element with CSS
- Add a grey background color to the Bootstrap 4 card
- Indicate danger with red outlined Bootstrap 4 Button
- Add a light grey background color to the Bootstrap 4 card
- Add hover color to background color of the table row in Bootstrap
- Add a blue background color to simulate a pressed button in Bootstrap
- Add a shadow to an element with Bootstrap 4
- Create a red color alert box that indicates a dangerous action in Bootstrap

Advertisements