CSS text-decoration property
Decoration in CSS refers to adding a horizontal line to the text. The text-decoration
property allows you to add a line under the text with the value underline
, over the text (overline
), or through it (line-through
). You can also remove underlines from links with the following rule:
a {
text-decoration: none;
}