Class reference

Text Alignment - 图1

Usage

Control the text alignment of an element using the .text-left, .text-center, .text-right, and .text-justify utilities.

Text Alignment - 图2

Responsive

To control the text alignment of an element at a specific breakpoint, add a {screen}: prefix to any existing text alignment utility. For example, use md:text-center to apply the text-center utility at only medium screen sizes and above.

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

Text Alignment - 图3

all

Text Alignment - 图4

sm

Text Alignment - 图5

md

Text Alignment - 图6

lg

Text Alignment - 图7

xl

Text Alignment - 图8

Customizing

Responsive and State Variants

By default, only responsive variants are generated for text alignment utilities.

You can control which variants are generated for the text alignment utilities by modifying the textAlign property in the modules section of your Tailwind config file.

For example, this config will also generate hover and focus variants:

Text Alignment - 图9

Disabling

If you don’t plan to use the text alignment utilities in your project, you can disable them entirely by setting the textAlign property to false in the modules section of your config file:

Text Alignment - 图10