CSS Property: text-decoration-style
Sets the style of the text decoration established by text-decoration-line
.
Possible Values
Value | Description |
---|---|
solid | Solid line. Default. |
dotted | Series of dots. |
dashed | Series of dashes. |
double | Two solid lines. |
wavy | Wavy line. |
inherit | |
initial | |
unset |
Example
a:hover {
text-decoration-line: underline;
text-decoration-style: dotted;
}