1. 排版
  2. 文本换行

Quick reference

Class
Properties
text-wraptext-wrap: wrap;
text-nowraptext-wrap: nowrap;
text-balancetext-wrap: balance;
text-prettytext-wrap: pretty;

基本用法

¥Basic usage

换行

¥Wrap

使用 text-wrap 将溢出文本换行到文本中逻辑点处的多行。

¥Use text-wrap to wrap overflowing text onto multiple lines at logical points in the text.

Beloved Manhattan soup stand closes

New Yorkers are facing the winter chill with less warmth this year as the city's most revered soup stand unexpectedly shutters, following a series of events that have left the community puzzled.

<article class="text-wrap ...">
  <h3>Beloved Manhattan soup stand closes</h3>
  <p>New Yorkers are facing the winter chill...</p>
</article>

无换行

¥No Wrap

使用 text-nowrap 防止文本换行,必要时允许文本溢出。

¥Use text-nowrap to prevent text from wrapping, allowing it to overflow if necessary.

Beloved Manhattan soup stand closes

New Yorkers are facing the winter chill with less warmth this year as the city's most revered soup stand unexpectedly shutters, following a series of events that have left the community puzzled.

<article class="text-nowrap ...">
  <h3>Beloved Manhattan soup stand closes</h3>
  <p>New Yorkers are facing the winter chill...</p>
</article>

平衡

¥Balance

使用 text-balance 将文本均匀分布在每行上。

¥Use text-balance to distribute the text evenly across each line.

Beloved Manhattan soup stand closes

New Yorkers are facing the winter chill with less warmth this year as the city's most revered soup stand unexpectedly shutters, following a series of events that have left the community puzzled.

<article>
  <h3 class="text-balance ...">Beloved Manhattan soup stand closes</h3>
  <p>New Yorkers are facing the winter chill...</p>
</article>

出于性能原因,浏览器将文本平衡限制为约 6 行或更少的块,使其最适合标题。

¥For performance reasons browsers limit text balancing to blocks that are ~6 lines or less, making it best suited for headings.

美化

¥Pretty

使用 text-pretty 可以防止文本块末尾出现孤立词(单独一行上的单个单词)。

¥Use text-pretty to prevent orphans (a single word on its own line) at the end of a text block.

Beloved Manhattan soup stand closes

New Yorkers are facing the winter chill with less warmth this year as the city's most revered soup stand unexpectedly shutters, following a series of events that have left the community puzzled.

<article class="text-pretty ...">
  <h3>Beloved Manhattan soup stand closes</h3>
  <p>New Yorkers are facing the winter chill...</p>
</article>

有条件地应用

悬停、聚焦和其他状态

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:text-balance to only apply the text-balance utility on hover.

<h1 class="text-wrap hover:text-balance">
  <!-- ... -->
</h1>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:text-balance to apply the text-balance utility at only medium screen sizes and above.

<h1 class="text-wrap md:text-balance">
  <!-- ... -->
</h1>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.