Style Bootstrap 4 cards with bg-dark class


Use the bg-dark contextual class in Bootstrap 4 to add a gray background to a card −

In the below code snippet, I have used the bg-dark class to style the Bootstrap card. With that, I have also the text-while class to set the text to be white −

<div class="card bg-dark text-white">
  <div class="card-body">This is it!</div>
</div>

Let us see the complete example to work with bg-dark class −

Example

Live Demo

<!DOCTYPE html>
<html lang="en">
  <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">
    <h2>Notification</h2>
    <div class="card bg-dark text-white">
       <div class="card-body">This is it!</div>
    </div><br>
    <div class="card">
      <div class="card-body">How you doing?</div>
    </div><br>
  </div>

</body>
</html>

Updated on: 16-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements