1. 排版
  2. 字体拉伸

排版

font-stretch

用于选择字体宽度的工具类。

ClassStyles
font-stretch-ultra-condensed
font-stretch: ultra-condensed; /* 50% */
font-stretch-extra-condensed
font-stretch: extra-condensed; /* 62.5% */
font-stretch-condensed
font-stretch: condensed; /* 75% */
font-stretch-semi-condensed
font-stretch: semi-condensed; /* 87.5% */
font-stretch-normal
font-stretch: normal; /* 100% */
font-stretch-semi-expanded
font-stretch: semi-expanded; /* 112.5% */
font-stretch-expanded
font-stretch: expanded; /* 125% */
font-stretch-extra-expanded
font-stretch: extra-expanded; /* 150% */
font-stretch-ultra-expanded
font-stretch: ultra-expanded; /* 200% */
font-stretch-<percentage>
font-stretch: <percentage>;
font-stretch-(<custom-property>)
font-stretch: var(<custom-property>);
font-stretch-[<value>]
font-stretch: <value>;

示例

基本示例

使用类似 font-stretch-condensedfont-stretch-expanded 的工具类来设置字体宽度:

font-stretch-extra-condensed

快速的棕色狐狸跳过懒狗。

font-stretch-condensed

快速的棕色狐狸跳过懒狗。

font-stretch-normal

快速的棕色狐狸跳过懒狗。

font-stretch-expanded

快速的棕色狐狸跳过懒狗。

font-stretch-extra-expanded

快速的棕色狐狸跳过懒狗。

<p class="font-stretch-extra-condensed">快速的棕色狐狸...</p>
<p class="font-stretch-condensed">快速的棕色狐狸...</p>
<p class="font-stretch-normal">快速的棕色狐狸...</p>
<p class="font-stretch-expanded">快速的棕色狐狸...</p>
<p class="font-stretch-extra-expanded">快速的棕色狐狸...</p>

这仅适用于具有多种宽度变体的字体,否则浏览器选择最接近的匹配。

使用百分比

使用 font-stretch-<percentage> 工具类,如 font-stretch-50%font-stretch-125%,根据百分比来设置字体宽度:

font-stretch-50%

快速的棕色狐狸跳过懒狗。

font-stretch-100%

快速的棕色狐狸跳过懒狗。

font-stretch-150%

快速的棕色狐狸跳过懒狗。

<p class="font-stretch-50%">快速的棕色狐狸...</p>
<p class="font-stretch-100%">快速的棕色狐狸...</p>
<p class="font-stretch-150%">快速的棕色狐狸...</p>

使用自定义值

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

<p class="font-stretch-[66.66%] ...">
<!-- ... -->
</p>

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

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

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

响应式设计

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

<div class="font-stretch-normal md:font-stretch-expanded ...">
<!-- ... -->
</div>

Learn more about using variants in the variants documentation.