2

I have the following card, I am trying to vertically center align the text "Light card title", I have added align-middle but it does not have an effect. How can the text be vertically center aligned?

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"/>

                <div class="card bg-light mb-3" style="max-width: 18rem;;">
                    <div class="card-header">Total Views</div>
                    <div class="card-body" style=" height:150px">
                        <h5 class="card-title text-center align-middle">Light
                            card title</h5>
                    </div>
                </div>
Carol Skelly
  • 351,302
  • 90
  • 710
  • 624
david
  • 997
  • 3
  • 14
  • 34

2 Answers2

3

Can you please check the below code? Hope it will work for you. In the Bootstrap 5 document, they have mentioned that to vertically center "non-inline content" (like <div>s and more), use our flex box utilities. With the help of these utilities, you can easily align the text vertically and horizontally center.

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" />

<div class="card bg-light mb-3" style="max-width: 18rem;;">
  <div class="card-header">Total Views</div>
  <div class="card-body d-flex align-items-center justify-content-center" style=" height:150px">
    <h5 class="card-title">Light card title</h5>
  </div>
</div>
Yudiz Solutions
  • 4,216
  • 2
  • 7
  • 21
1

There are several different ways to center align content. Here's a simple method for card content...

  <div class="card bg-light mb-3 justify-content-center" style="max-width: 18rem;;">
        <div class="card-header">Total Views</div>
        <div class="card-body d-flex" style="height:150px">
            <h5 class="card-title m-auto">Light card title</h5>
        </div>
  </div>
  • use d-flex for display:flex
  • use m-auto for auto margins

Demo

Related: Bootstrap 4 vertical align text won't center on card

Carol Skelly
  • 351,302
  • 90
  • 710
  • 624