快速参考

属性
decoration-solidtext-decoration-style: solid;
decoration-doubletext-decoration-style: double;
decoration-dottedtext-decoration-style: dotted;
decoration-dashedtext-decoration-style: dashed;
decoration-wavytext-decoration-style: wavy;

基本用法

设置文本装饰样式

使用 decoration-{style} 实用程序来更改元素的 文本装饰 样式。

decoration-solid

The quick brown fox jumps over the lazy dog.

decoration-double

The quick brown fox jumps over the lazy dog.

decoration-dotted

The quick brown fox jumps over the lazy dog.

decoration-dashed

The quick brown fox jumps over the lazy dog.

decoration-wavy

The quick brown fox jumps over the lazy dog.

<p class="underline decoration-solid ...">The quick brown fox...</p>
<p class="underline decoration-double ...">The quick brown fox...</p>
<p class="underline decoration-dotted ...">The quick brown fox...</p>
<p class="underline decoration-dashed ...">The quick brown fox...</p>
<p class="underline decoration-wavy ...">The quick brown fox...</p>

条件应用

悬停、焦点和其他状态

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

<p class="underline hover:decoration-dashed">
  <!-- ... -->
</p>

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

断点和媒体查询

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

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

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