< 1 min read
The text-decoration property is used to set or remove decorations from text.
text-decoration
The value text-decoration: none; is often used to remove underlines from links:
text-decoration: none;
a { text-decoration: none; }
The other text-decoration values are used to decorate text:
h1 { text-decoration: overline; } h2 { text-decoration: line-through; } h3 { text-decoration: underline; }
Powered by BetterDocs
You must be logged in to post a comment.