快速参考

属性
font-thinfont-weight: 100;
font-extralightfont-weight: 200;
font-lightfont-weight: 300;
font-normalfont-weight: 400;
font-mediumfont-weight: 500;
font-semiboldfont-weight: 600;
font-boldfont-weight: 700;
font-extraboldfont-weight: 800;
font-blackfont-weight: 900;

基本用法

设置字体重量

使用 font-{weight} 实用程序控制元素的字体重量。

font-light

The quick brown fox jumps over the lazy dog.

font-normal

The quick brown fox jumps over the lazy dog.

font-medium

The quick brown fox jumps over the lazy dog.

font-semibold

The quick brown fox jumps over the lazy dog.

font-bold

The quick brown fox jumps over the lazy dog.

<p class="font-light ...">The quick brown fox ...</p>
<p class="font-normal ...">The quick brown fox ...</p>
<p class="font-medium ...">The quick brown fox ...</p>
<p class="font-semibold ...">The quick brown fox ...</p>
<p class="font-bold ...">The quick brown fox ...</p>

有条件地应用

悬停、焦点和其他状态

Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 hover:font-bold 仅在悬停时应用 font-bold 实用程序。

<p class="font-normal hover:font-bold">
  <!-- ... -->
</p>

有关所有可用状态修饰符的完整列表,请查看 悬停、焦点和其它状态 文档。

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、深色模式、 prefers-reduced-motion 等等。例如,使用 md:font-bold 仅在中型屏幕尺寸及以上时应用 font-bold 实用程序。

<p class="font-normal md:font-bold">
  <!-- ... -->
</p>

要了解更多信息,请查看有关 响应式设计深色模式其他媒体查询修饰符 的文档。


使用自定义值

自定义主题

默认情况下,Tailwind 提供九个 font-weight 实用程序。您可以通过编辑 Tailwind 配置文件中的 theme.fontWeight 部分来更改、添加或删除这些实用程序。

tailwind.config.js
module.exports = {
  theme: {
    fontWeight: {
      thin: '100',
      hairline: '100',
      extralight: '200',
      light: '300',
      normal: '400',
      medium: '500',
      semibold: '600',
      bold: '700',
      extrabold: '800',
      'extra-bold': '800',
      black: '900',
    }
  }
}

了解更多关于在 主题自定义 文档中自定义默认主题的信息。

任意值

如果您需要使用一次性的 font-weight 值,该值在您的主题中没有意义,请使用方括号使用任何任意值动态生成属性。

<p class="font-[1100]">
  <!-- ... -->
</p>

了解更多关于在 任意值 文档中使用任意值的支持。