VOOZH about

URL: https://www.geeksforgeeks.org/bootstrap/bootstrap-5-cards-body/

⇱ Bootstrap 5 Cards Body - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bootstrap 5 Cards Body

Last Updated : 9 Dec, 2022

Bootstrap 5 Cards Body is used to create the card's body is the main part of the card which contains the title, sub-title all the things that a card contains.

Bootstrap 5 Cards Body Class:

  • card-body: This class is used for creating the body of the card.

Syntax:

<div class="card">
 <div class="card-body">
 ...
 </div>
</div>

Example 1: In this example, we will add a title and text to the card body.

Output:

👁 Image
 

Example 2: In this example, we will add a title, button, link, and text to the card body.

Output:

👁 Image
 

References: https://getbootstrap.com/docs/5.0/components/card/#body

Comment

Explore