排版
用于控制文本修饰的实用程序。
控制如何使用 underline
、no-underline
和 line-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
来仅 在 hover应用 underline
.
Try hovering over the text to see the expected behaviour
<a href="#" class="no-underline hover:underline ...">Link</a>
详细了解, 请参考 Hover, Focus, & Other States 文档.
您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如, 使用 md:underline
来应用 underline
程序,适用于中等屏幕尺寸及以上。
<p class="no-underline md:underline">
<!-- ... -->
</p>