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

Font Style

Utilities for controlling the style of text.

Default class reference

Class
屬性
italicfont-style: italic;
not-italicfont-style: normal;

Italics

Use the italic utility to make text italic.

The quick brown fox jumps over the lazy dog.

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

Undo Italics

Use the not-italic utility to display text normally. This is typically used to reset italic text at different breakpoints.

The quick brown fox jumps over the lazy dog.

<p class="not-italic ...">The quick brown fox ...</p>

Responsive

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

<p class="italic md:not-italic ...">
  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 style 變化模式 (variants) 會產生。

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

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

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

Disabling

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

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