快速参考

属性
underline-offset-autotext-underline-offset: auto;
underline-offset-0text-underline-offset: 0px;
underline-offset-1text-underline-offset: 1px;
underline-offset-2text-underline-offset: 2px;
underline-offset-4text-underline-offset: 4px;
underline-offset-8text-underline-offset: 8px;

基本用法

设置下划线偏移量

使用 underline-offset-{width} 实用程序更改文本下划线的偏移量。

underline-offset-1

The quick brown fox jumps over the lazy dog.

underline-offset-2

The quick brown fox jumps over the lazy dog.

underline-offset-4

The quick brown fox jumps over the lazy dog.

underline-offset-8

The quick brown fox jumps over the lazy dog.

<p class="underline underline-offset-1 ...">The quick brown fox...</p>
<p class="underline underline-offset-2 ...">The quick brown fox...</p>
<p class="underline underline-offset-4 ...">The quick brown fox...</p>
<p class="underline underline-offset-8 ...">The quick brown fox...</p>

有条件地应用

悬停、焦点和其他状态

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

<p class="underline hover:underline-offset-4">
  <!-- ... -->
</p>

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

断点和媒体查询

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

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

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


使用自定义值

自定义主题

您可以通过编辑 tailwind.config.js 文件中的 theme.textUnderlineOffsettheme.extend.textUnderlineOffset 来自定义 underline-offset-{width} 实用程序。

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      textUnderlineOffset: {
        3: '3px',
      }
    }
  }
}

详细了解如何在 主题自定义 文档中自定义默认主题。

任意值

如果您需要使用一次性的 text-underline-offset 值,而该值不适合包含在您的主题中,请使用方括号使用任何任意值动态生成属性。

<p class="underline-offset-[3px]">
  <!-- ... -->
</p>

详细了解如何在 任意值 文档中使用任意值支持。