Utilities for controlling the tracking (letter spacing) of an element.
.tracking-tighter
The quick brown fox jumped over the lazy dog.
.tracking-tight
The quick brown fox jumped over the lazy dog.
.tracking-normal
The quick brown fox jumped over the lazy dog.
.tracking-wide
The quick brown fox jumped over the lazy dog.
.tracking-wider
The quick brown fox jumped over the lazy dog.
.tracking-widest
The quick brown fox jumped over the lazy dog.
<p class="tracking-tighter ...">The quick brown fox ...</p>
<p class="tracking-tight ...">The quick brown fox ...</p>
<p class="tracking-normal ...">The quick brown fox ...</p>
<p class="tracking-wide ...">The quick brown fox ...</p>
<p class="tracking-wider ...">The quick brown fox ...</p>
<p class="tracking-widest ...">The quick brown fox ...</p>
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.
<p class="tracking-tight md:tracking-wide ...">The quick brown fox jumped over the lazy dog.</p>
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
By default Tailwind provides six tracking utilities. You can change, add, or remove these by editing the theme.letterSpacing
section of your Tailwind config.
// tailwind.config.js
module.exports = {
theme: {
letterSpacing: {
+ tightest: '-.075em',
tighter: '-.05em',
- tight: '-.025em',
normal: '0',
- wide: '.025em',
wider: '.05em',
- widest: '.1em',
+ widest: '.25em',
}
}
}
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:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ letterSpacing: ['hover', 'focus'],
}
}
}
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:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ letterSpacing: false,
}
}