1. Typography
  2. font-family

Typography

字体族

用于控制元素字体族的工具类。

ClassStyles
font-sans
font-family: var(--font-sans); /* ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' */
font-serif
font-family: var(--font-serif); /* ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif */
font-mono
font-family: var(--font-mono); /* ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace */
font-(family-name:<custom-property>)
font-family: var(<custom-property>);
font-[<value>]
font-family: <value>;

示例

基础示例

使用 font-sansfont-mono 等工具类来设置元素的字体族:

font-sans

The quick brown fox jumps over the lazy dog.

font-serif

The quick brown fox jumps over the lazy dog.

font-mono

The quick brown fox jumps over the lazy dog.

<p class="font-sans ...">The quick brown fox ...</p><p class="font-serif ...">The quick brown fox ...</p><p class="font-mono ...">The quick brown fox ...</p>

使用自定义值

Use the font-[<value>] syntax to set the 字体族 based on a completely custom value:

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

For CSS variables, you can also use the font-(<custom-property>) syntax:

<p class="font-(--my-font) ...">  <!-- ... --></p>

This is just a shorthand for font-[var(<custom-property>)] that adds the var() function for you automatically.

响应式设计

Prefix a font-family utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<p class="font-sans md:font-serif ...">  <!-- ... --></p>

Learn more about using variants in the variants documentation.

自定义主题

Use the --font-* theme variables to customize the font family utilities in your project:

@theme {  --font-display: "Oswald", "sans-serif"; }

Now the font-display utility can be used in your markup:

<div class="font-display">  <!-- ... --></div>

你还可以为字体族提供默认的 font-feature-settingsfont-variation-settings 值:

@theme {  --font-display: "Oswald", "sans-serif";  --font-display--font-feature-settings: "cv02", "cv03", "cv04", "cv11";   --font-display--font-variation-settings: "opsz" 32; }

如果需要,使用 @font-face at-rule 来加载自定义字体:

@font-face {  font-family: Oswald;  font-style: normal;  font-weight: 200 700;  font-display: swap;  src: url("/fonts/Oswald.woff2") format("woff2");}

Learn more about customizing your theme in the theme documentation.

版权所有 © 2025 Tailwind Labs Inc.·商标政策