Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Bootstrap5 Vertical Align

Bootstrap 5 provides vertical alignment utilities to align elements within containers, table cells, flex containers, and more. These classes make it easy to align elements top, middle, or bottom.

1. Align Text Vertically

You can align inline elements relative to their surrounding text using these classes : align-baseline, align-top, align-middle, align-bottom, align-text-top, align-text-bottom.

HTML
 <p class="border p-3">
    <span class="box align-baseline">Baseline</span>
    <span class="box align-top">Top</span>
    <span class="box align-middle">Middle</span>
    <span class="box align-bottom">Bottom</span>
    <span class="box align-text-top">Text-Top</span>
    <span class="box align-text-bottom">Text-Bottom</span>
</p>

Output:

ClassEffect
.align-baselineAligns to the baseline of text
.align-topAligns element to the top
.align-middleAligns element to the middle
.align-bottomAligns element to the bottom
.align-text-topAligns text to the top
.align-text-bottomAligns text to the bottom