

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
<!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>
- Related Questions & Answers
- Container to create a grid of Bootstrap 4 cards
- Container to create a grid of Bootstrap 4 cards like a group
- Bootstrap 4 .card-header class
- Bootstrap 4 .card-link class
- Bootstrap 4 .card-text class
- Bootstrap 4 .card-group class
- Bootstrap 4 .card-footer class
- Bootstrap 4 .card-subtitle class
- Bootstrap 4 .card-body class
- Bootstrap 4 .card-columns class
- Container to create a grid of Bootstrap 4 cards of equal height and width
- Create a Bootstrap 4 card header
- bg-light class for Bootstrap 4 cards
- Bootstrap 4 .card-header-pills class
- card-title class in Bootstrap 4
Advertisements