text-decoration-style

Draft

Definition

The text-decoration-style property is used to change the line style set by the family of text-decoration properties.

Here are all of the available values that you can set as text-decoration-style.

HTML

solid

double

dotted

dashed

wavy

Code
  <p class="text-decoration-solid">solid</p>
  <p class="text-decoration-double">double</p>
  <p class="text-decoration-dotted">dotted</p>
  <p class="text-decoration-dashed">dashed</p>
  <p class="text-decoration-wavy">wavy</p>