text-decoration
property
Sets the appearance of decorative lines on text. Can combine line, color, style, and thickness.
Syntax
text-decoration: none | underline | line-through | overline;
Example
css
a { text-decoration: none; } /* remove underline */
a:hover { text-decoration: underline; }
.strikethrough { text-decoration: line-through; }
.underline-red {
text-decoration: underline wavy red 2px;
}