This class accepts more than one value in tailwind CSS. All the properties are covered in class form. It is the alternative to the CSS vertical-align property. This class is used to specify the vertical alignment of the table-box or inline element.
Vertical Alignment classes:
- align-baseline: It aligns the element baseline corresponding to the baseline of the parent. This might vary according to the browser. It is the default value.
- align-top: Aligns the element’s top corresponding to the top of the tallest element on its line.
- align-middle: Aligns the element’s middle corresponding to the middle of the parent.
- align-bottom: Aligns the element’s bottom corresponding to the top of the shortest element on its line.
- align-text-top: It aligns the element top corresponding to the top of the parent’s font.
- align-text-bottom: Align the element’s bottom corresponding to the bottom of the parent’s font.
Syntax:
<element class="align-{Vertical Alignment}">...</element>
Example:
Output:
👁 Image