- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap 4 .card-body class
To set the container for the Bootstrap card, you need to use the card-body class. It allows you to add content
The following is the card-body class −
<div class="card-body"> Body of the card </div>
And set the above inside the card class as shown in the following code snippet −
<div class="card"> <div class="card-body">Body of the card.</div> </div>
You can try to run the following code to implement the card-body 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>Heading Three</h3> <div class="card"> <div class="card-body">Body of the card.</div> </div> </div> </body> </html>
- Related Articles
- Bootstrap 4 .card-text class
- Bootstrap 4 .card-header class
- Bootstrap 4 .card-link class
- Bootstrap 4 .card-footer class
- Bootstrap 4 .card-subtitle class
- Bootstrap 4 .card-columns class
- Bootstrap 4 .card-group class
- card-title class in Bootstrap 4
- Bootstrap 4 .card-header-pills class
- Bootstrap 4 .card-img-top class
- Bootstrap 4 .card-img-overlay class
- Bootstrap 4 .card-img-bottom class
- Bootstrap 4 .card-header-tabs class
- Bootstrap .card class
- Style Bootstrap 4 card with bg-primary class

Advertisements