CSS Text Decoration
- Previous Page CSS Text Alignment
- Next Page CSS Text Transformation
Text Decoration
text-decoration
The property is used to set or remove text decoration.
text-decoration: none;
Used to remove underlines from links usually:
Example
a { text-decoration: none; }
Others text-decoration
Values for text decoration:
Example
h1 { text-decoration: overline; } h2 { text-decoration: line-through; } h3 { text-decoration: underline; }
Note:It is recommended not to add underlines to non-link text, as this often confuses readers.
- Previous Page CSS Text Alignment
- Next Page CSS Text Transformation