Text Alignment
Control the text alignment of an element using the , .text-center
, .text-right
, and .text-justify
utilities.
To control the text alignment of an element at a specific breakpoint, add a 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.
all
sm
md
lg
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda, quia temporibus eveniet a libero incidunt suscipit laborum, rerum accusantium modi quidem, ipsam illum quis sed voluptatum quae eum fugit earum.
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 section of your tailwind.config.js
file.
For example, this config will also generate hover and focus variants:
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 section of your config file: