Class reference

Font Size - 图1

Usage

Control the font size of an element using the .text-{size} utilities.

Font Size - 图2

Responsive

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

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

Font Size - 图3

all

Font Size - 图4

sm

Font Size - 图5

md

Font Size - 图6

lg

Font Size - 图7

xl

Font Size - 图8

Customizing

Responsive and State Variants

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

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

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

Font Size - 图9

Disabling

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

Font Size - 图10