1. 排版
  2. 文本装饰样式

排版

text-decoration-style

用于控制文本装饰样式的工具。

ClassStyles
decoration-solid
text-decoration-style: solid;
decoration-double
text-decoration-style: double;
decoration-dotted
text-decoration-style: dotted;
decoration-dashed
text-decoration-style: dashed;
decoration-wavy
text-decoration-style: wavy;

示例

基本示例

使用 decoration-dotteddecoration-dashed 等工具来改变元素的 文本装饰 样式:

decoration-solid

快速的棕色狐狸跳过懒狗。

decoration-double

快速的棕色狐狸跳过懒狗。

decoration-dotted

快速的棕色狐狸跳过懒狗。

decoration-dashed

快速的棕色狐狸跳过懒狗。

decoration-wavy

快速的棕色狐狸跳过懒狗。

<p class="underline decoration-solid">快速的棕色狐狸...</p>
<p class="underline decoration-double">快速的棕色狐狸...</p>
<p class="underline decoration-dotted">快速的棕色狐狸...</p>
<p class="underline decoration-dashed">快速的棕色狐狸...</p>
<p class="underline decoration-wavy">快速的棕色狐狸...</p>

响应式设计

Prefix a text-decoration-style utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

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

Learn more about using variants in the variants documentation.