text-decoration-style
Utilities for controlling the style of text decorations.
Quick reference
Class | Styles |
---|---|
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; |
Source: https://tailwindcss.com/guide/text-decoration-style
Examples
Basic example
Use utilities like decoration-solid
and decoration-dashed
to control the style of text decorations:
html
<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>
Responsive design
Prefix a text-decoration-style
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
html
<p class="underline md:decoration-dashed ...">Lorem ipsum dolor sit amet...</p>
Learn more about using variants in the variants documentation.