Container to create a grid of Bootstrap 4 cards of equal height and width


Set a container of cards, using the card-deck class.

Work it inside the following div that would be of equal width and height −

<div class="card-deck">
  <div class="card bg-primary">
  <!- - One  - ->
</div>
<div class="card bg-primary">
  <!- - Two  - ->
  </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: 16-Jun-2020

400 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements