text-decoration-style
En esta página
| Clase | Propiedades CSS |
|---|---|
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; |
Examples#
Basic example#
Use utilities like decoration-dotted and decoration-dashed to change the text decoration style of an element:
{
decoration-solid
The quick brown fox jumps over the lazy dog.
decoration-double
decoration-dotted
The quick brown fox jumps over the lazy dog.
decoration-dashed
The quick brown fox jumps over the lazy dog.
decoration-wavy
The quick brown fox jumps over the lazy dog.
<!-- [!code classes:decoration-solid,decoration-double,decoration-dotted,decoration-dashed,decoration-wavy] -->
<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>