Set positive action to the Bootstrap 4 card



To set positive/ success action to a card in Bootstrap, use the card-success class.

Here, I have set the card-success class like we set class on any element like <div>.

<div class="card bg-success text-white">   <div class="card-body">Deal!</div> </div>

In the same way, set other success messages −

<div class="card bg-success text-white">   <div class="card-body">Task complete!</div> </div>

Let us implement success action on a Bootstrap 4 card −

Example

Live Demo

<!DOCTYPE html> <html>   <head>     <title>Bootstrap Example</title>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1">     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>   </head> <body> <div class="container">   <h3>Success Messages</h3>   <div class="card bg-success text-white">     <div class="card-body">Deal!</div>   </div><br>   <div class="card bg-success text-white">     <div class="card-body">Cleared the 2nd  round!</div>   </div><br>   <div class="card bg-success text-white">     <div class="card-body">Victory!</div>   </div><br>   <div class="card bg-success text-white">     <div class="card-body">Task complete!</div>   </div>  </div> </body> </html>
Updated on: 2020-06-16T08:40:07+05:30

165 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements