Alignment and Spacing
Learn and practice text alignment and spacing in Tailwind.
We'll cover the following...
Alignment of text
Several Tailwind classes are used to specify the horizontal alignment of text. These are listed below:
.text-left
.text-center
.text-right
.text-justify
They all change the CSS text-align
property. The exact bounds of the alignment depend on the box in the next chapter.
Vertical alignment
The CSS property for vertical alignment is vertical-align
, and these are the Tailwind ...