用于控制元素的字距(字母间距)的功能类。
.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>
要在特定的断点处控制元素的字母间距,请在任何现有的字母间距功能类前添加 {screen}:
前缀。例如,使用 md:tracking-wide
来仅在中等大小及以上的屏幕应用 tracking-wide
功能类。
<p class="tracking-tight md:tracking-wide ...">The quick brown fox jumped over the lazy dog.</p>
关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。
默认情况下,Tailwind 提供了六个字距功能类。您可以通过编辑您的 Tailwind 配置中的 theme.letterSpacing
部分来改变、添加或删除这些功能类。
// tailwind.config.js
module.exports = {
theme: {
letterSpacing: {
+ tightest: '-.075em',
tighter: '-.05em',
- tight: '-.025em',
normal: '0',
- wide: '.025em',
wider: '.05em',
- widest: '.1em',
+ widest: '.25em',
}
}
}
默认情况下, 针对 tracking 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 letterSpacing
属性来控制为 tracking 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ letterSpacing: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 tracking 功能,您可以通过在配置文件的 corePlugins
部分将 letterSpacing
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ letterSpacing: false,
}
}