Tailwind CSS on GitHub

字体样式

用来控制字体样式的功能类。

Default class reference

Class
Properties
italicfont-style: italic;
not-italicfont-style: normal;

Italics

使用 italic 功能类使文字变成斜体。

The quick brown fox jumped over the lazy dog.

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

Undo Italics

使用 not-italic 功能类正常显示文本。这通常用于在不同的断点处重置斜体文字。

The quick brown fox jumped over the lazy dog.

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

响应式

要在特定的断点处控制元素的字体样式,请在任何现有的字体样式功能类前添加 {screen}: 前缀。例如,使用 md:not-italic 来仅在中等大小及以上的屏幕应用 not-italic 功能类。

<p class="italic md:not-italic ...">
  The quick brown fox jumped over the lazy dog.
</p>

关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。

定制

变体

默认情况下, 针对 font style 功能类,只生成 responsive 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 fontStyle 属性来控制为 font style 功能生成哪些变体。

例如,这个配置将生成 hover and focus 变体:

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

禁用

如果您不打算在您的项目中使用 font style 功能,您可以通过在配置文件的 corePlugins 部分将 fontStyle property to false in the corePlugins section of your config file:

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