font-stretch

Các utility để kiểm soát độ kéo giãn font của một phần tử.

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>;

Ví dụ

Ví dụ cơ bản

Sử dụng các utility như font-stretch-condensedfont-stretch-expanded để thiết lập độ kéo giãn font của một phần tử:

font-stretch-extra-condensed

The quick brown fox jumps over the lazy dog.

font-stretch-condensed

The quick brown fox jumps over the lazy dog.

font-stretch-normal

The quick brown fox jumps over the lazy dog.

font-stretch-expanded

The quick brown fox jumps over the lazy dog.

font-stretch-extra-expanded

The quick brown fox jumps over the lazy dog.

<p class="font-stretch-extra-condensed">The quick brown fox...</p><p class="font-stretch-condensed">The quick brown fox...</p><p class="font-stretch-normal">The quick brown fox...</p><p class="font-stretch-expanded">The quick brown fox...</p><p class="font-stretch-extra-expanded">The quick brown fox...</p>

Điều này chỉ áp dụng cho các font cung cấp nhiều độ rộng — nếu không, trình duyệt sẽ chọn kết quả khớp gần nhất.

Sử dụng phần trăm

Sử dụng các utility font-stretch-<percentage> như font-stretch-50%font-stretch-125% để thiết lập độ kéo giãn font của một phần tử thành một phần trăm cụ thể:

font-stretch-50%

The quick brown fox jumps over the lazy dog.

font-stretch-100%

The quick brown fox jumps over the lazy dog.

font-stretch-150%

The quick brown fox jumps over the lazy dog.

<p class="font-stretch-50%">The quick brown fox...</p><p class="font-stretch-100%">The quick brown fox...</p><p class="font-stretch-150%">The quick brown fox...</p>

Sử dụng giá trị tùy chỉnh

Use the font-stretch-[<value>] syntax to set the font width based on a completely custom value:

<p class="font-stretch-[66.66%] ...">  Lorem ipsum dolor sit amet...</p>

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

<p class="font-stretch-(--my-font-width) ...">  Lorem ipsum dolor sit amet...</p>

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

Thiết kế phản hồi

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.

Copyright © 2025 Tailwind Labs Inc.·Chính sách thương hiệu