你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Font Smoothing

Utilities for controlling the font smoothing of an element.

Default class reference

Class
屬性
antialiased-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
subpixel-antialiased-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;

Subpixel Antialiasing

Use the subpixel-antialiased utility to render text using subpixel antialiasing.

The quick brown fox jumps over the lazy dog.

<p class="subpixel-antialiased ...">The quick brown fox ...</p>

Grayscale Antialiasing

Use the antialiased utility to render text using grayscale antialiasing.

The quick brown fox jumps over the lazy dog.

<p class="antialiased ...">The quick brown fox ...</p>

Responsive

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

<p class="antialiased sm:subpixel-antialiased md:antialiased ...">
  The quick brown fox jumps over the lazy dog.
</p>

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

Customizing

Variants

默認情況下, 只有 響應式 的 font smoothing 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 fontSmoothing 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 hover 的變化模式。

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       fontSmoothing: ['responsive', 'hover'],
      }
    }
  }

Disabling

如果你不打算在專案中使用 font smoothing 功能,可以在你的設定檔裡的 corePlugins 屬性中將 fontSmoothing 設定為 false 來停用功能:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
+     fontSmoothing: false,
    }
  }