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

Font Weight

Utilities for controlling the font weight of an element.

Default class reference

Class
屬性
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;

Usage

Control the font weight of an element using the font-{weight} utilities.

thin
The quick brown fox jumps over the lazy dog.
extralight
The quick brown fox jumps over the lazy dog.
light
The quick brown fox jumps over the lazy dog.
normal
The quick brown fox jumps over the lazy dog.
medium
The quick brown fox jumps over the lazy dog.
semibold
The quick brown fox jumps over the lazy dog.
bold
The quick brown fox jumps over the lazy dog.
extrabold
The quick brown fox jumps over the lazy dog.
black
The quick brown fox jumps over the lazy dog.
<p class="font-thin ...">The quick brown fox ...</p>
<p class="font-extralight ...">The quick brown fox ...</p>
<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>
<p class="font-extrabold ...">The quick brown fox ...</p>
<p class="font-black ...">The quick brown fox ...</p>

Responsive

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

<p class="font-normal md:font-bold ...">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

Font Weights

By default, Tailwind provides 10 font-weight utilities. You change, add, or remove these by editing the theme.fontWeight section of your Tailwind config.

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

Variants

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

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

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

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

Disabling

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

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