CSS Text Decoration
- Previous Page Text Alignment ng CSS
- Next Page Text Transformation ng CSS
Text Decoration
text-decoration
Property 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
Value used 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 Text Alignment ng CSS
- Next Page Text Transformation ng CSS