1. 排版
  2. 文本装饰线

排版

文本装饰线

控制文本装饰的工具类。

ClassStyles
underline
text-decoration-line: underline;
overline
text-decoration-line: overline;
line-through
text-decoration-line: line-through;
no-underline
text-decoration-line: none;

示例

添加下划线文本

使用 underline 工具类在元素的文本上添加下划线:

敏捷的棕色狐狸跳过懒狗。

<p class="underline">敏捷的棕色狐狸...</p>

添加横线文本

使用 overline 工具类在元素的文本上添加横线:

敏捷的棕色狐狸跳过懒狗。

<p class="overline">敏捷的棕色狐狸...</p>

添加删除线文本

使用 line-through 工具类在元素的文本上添加删除线:

敏捷的棕色狐狸跳过懒狗。

<p class="line-through">敏捷的棕色狐狸...</p>

从文本中移除线条

使用 no-underline 工具类从元素的文本中移除线条:

敏捷的棕色狐狸跳过懒狗。

<p class="no-underline">敏捷的棕色狐狸...</p>

悬停应用

Prefix a text-decoration-line utility with a variant like hover:* to only apply the utility in that state:

将鼠标悬停在文本上查看预期行为

敏捷的 棕色狐狸 跳过懒狗。
<p>敏捷的 <a href="..." class="no-underline hover:underline ...">棕色狐狸</a> 跳过懒狗。</p>

Learn more about using variants in the variants documentation.

响应式设计

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

<a class="no-underline md:underline ..." href="...">
<!-- ... -->
</a>

Learn more about using variants in the variants documentation.