Create a grid of cards using Bootstrap 4 .card-deck class


Use the card-deck class in Bootstrap to form a grid of cards with equal width and height.

Set the cards inside the following div −

<div class="card-deck">
  <! - - deck- - >
</div>

Let us set the grid of cards now in the card-deck class −

<div class="card-deck">
  <div class="card bg-primary">
    <div class="card-body text-center">
    <p class="card-text">Nothing new!</p>
  </div>
</div>

You can try to run the following code to implement the card-deck 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">  
    <h3>Demo Messages</h3>
    <p>Note: Resize the browser to check the effect.</p>
    <div class="card-deck">
      <div class="card bg-primary">
        <div class="card-body text-center">
          <p class="card-text">Nothing new!</p>
        </div>
      </div>
      <div class="card bg-warning">
        <div class="card-body text-center">
         <p class="card-text">Warning! Compile-time error!</p>
         <p class="card-text">Check again!</p>
      </div>
    </div>
    <div class="card bg-success">
      <div class="card-body text-center">
        <p class="card-text">We won!</p>
      </div>
    </div>
  </div>
</div>

</body>
</html>

Updated on: 18-Jun-2020

522 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements