快速参考

属性
下划线text-decoration-line: underline;
上划线text-decoration-line: overline;
删除线text-decoration-line: line-through;
无下划线text-decoration-line: none;

基本用法

设置文本装饰

使用underlineno-underlineline-through实用程序控制文本的装饰方式。

下划线

The quick brown fox jumps over the lazy dog.

上划线

The quick brown fox jumps over the lazy dog.

删除线

The quick brown fox jumps over the lazy dog.

无下划线

The quick brown fox jumps over the lazy dog.

<p class="underline ...">The quick brown fox ...</p>
<p class="overline ...">The quick brown fox ...</p>
<p class="line-through ...">The quick brown fox ...</p>
<p class="no-underline ...">The quick brown fox ...</p>

条件应用

悬停、聚焦和其他状态

Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 hover:underline 仅在悬停时应用 underline 实用程序。

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

<a href="#" class="no-underline hover:underline ...">Link</a>

有关所有可用状态修饰符的完整列表,请查看 悬停、聚焦和其它状态 文档。

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、prefers-reduced-motion 等等。例如,使用 md:underline 仅在中等屏幕尺寸及以上时应用 underline 实用程序。

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

要了解更多信息,请查看有关 响应式设计暗模式其他媒体查询修饰符 的文档。