CSS text-decoration-style

text-decoration-style property is used to set the style of the line drawn on text. This property has the following values:

Let's see some examples:

Result:

    p {
      text-decoration: underline;
      text-decoration-style: solid;
    }
  

This is an example of solid underline.

Result:

    span {
      text-decoration: line-through;
      text-decoration-style: double;
    }
  

This is an example of double line-through.

Now, let's create a table to summarize the different styles:

Text Style Example
solid Underline
double Line-through
dotted Overline
dashed Dashed underline
wavy Wavy overline