Text Alignment

Utilities for controlling the alignment of text.

Class reference

Class
Properties
.text-lefttext-align: left;
.text-centertext-align: center;
.text-righttext-align: right;
.text-justifytext-align: justify;

Usage

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

Text Align - 图1

  1. <p class="text-left ...">Lorem ipsum dolor sit amet ...</p>
  2. <p class="text-center ...">Lorem ipsum dolor sit amet ...</p>
  3. <p class="text-right ...">Lorem ipsum dolor sit amet ...</p>
  4. <p class="text-justify ...">Lorem ipsum dolor sit amet ...</p>

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 Align - 图2

all

Text Align - 图3

sm

Text Align - 图4

md

Text Align - 图5

lg

Text Align - 图6

xl

  1. <p class="text-left sm:text-center md:text-right lg:text-justify xl:text-center ...">Lorem ipsum dolor sit amet ...</p>

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.

Customizing

Responsive and pseudo-class 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 variants section of your tailwind.config.js file.

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

  1. // tailwind.config.js
  2. module.exports = {
  3. variants: {
  4. // ...
  5. - textAlign: ['responsive'],
  6. + textAlign: ['responsive', 'hover', 'focus'],
  7. }
  8. }

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 corePlugins section of your config file:

  1. // tailwind.config.js
  2. module.exports = {
  3. corePlugins: {
  4. // ...
  5. + textAlign: false,
  6. }
  7. }

← Placeholder Opacity   Text Color →