Letter Spacing

Utilities for controlling the tracking (letter spacing) of an element.

Class reference

Class
Properties
.tracking-tighterletter-spacing: -0.05em;
.tracking-tightletter-spacing: -0.025em;
.tracking-normalletter-spacing: 0;
.tracking-wideletter-spacing: 0.025em;
.tracking-widerletter-spacing: 0.05em;
.tracking-widestletter-spacing: 0.1em;

Usage

Control the letter spacing of an element using the .tracking-{size} utilities.

Letter Spacing - 图1

  1. <p class="tracking-tighter ...">The quick brown fox ...</p>
  2. <p class="tracking-tight ...">The quick brown fox ...</p>
  3. <p class="tracking-normal ...">The quick brown fox ...</p>
  4. <p class="tracking-wide ...">The quick brown fox ...</p>
  5. <p class="tracking-wider ...">The quick brown fox ...</p>
  6. <p class="tracking-widest ...">The quick brown fox ...</p>

Responsive

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

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

Letter Spacing - 图2

all

Letter Spacing - 图3

sm

Letter Spacing - 图4

md

Letter Spacing - 图5

lg

Letter Spacing - 图6

xl

  1. <p class="tracking-tight sm:tracking-normal md:tracking-wide lg:tracking-normal xl:tracking-tight ...">The quick brown fox jumped over the lazy dog.</p>

The quick brown fox jumped over the lazy dog.

Customizing

Letter Spacings

By default Tailwind provides six tracking utilities. You can change, add, or remove these by editing the theme.letterSpacing section of your Tailwind config.

  1. // tailwind.config.js
  2. module.exports = {
  3. theme: {
  4. letterSpacing: {
  5. + tightest: '-.075em',
  6. tighter: '-.05em',
  7. - tight: '-.025em',
  8. normal: '0',
  9. - wide: '.025em',
  10. wider: '.05em',
  11. - widest: '.1em',
  12. + widest: '.25em',
  13. }
  14. }
  15. }

Responsive and pseudo-class variants

By default, only responsive variants are generated for tracking utilities.

You can control which variants are generated for the tracking utilities by modifying the letterSpacing 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. - letterSpacing: ['responsive'],
  6. + letterSpacing: ['responsive', 'hover', 'focus'],
  7. }
  8. }

Disabling

If you don’t plan to use the tracking utilities in your project, you can disable them entirely by setting the letterSpacing property to false in the corePlugins section of your config file:

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

← Font Variant Numeric   Line Height →