排版
用于控制文本装饰样式的实用程序。
使用 decoration-{style}
实用程序来更改元素的 文本装饰 样式。
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.
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>