CSS Text Decoration

Text Decoration

text-decoration Properties are used to set or remove text decoration.

text-decoration: none; Generally used to remove underlines from links:

Example

a {
  text-decoration: none;
{}

Try it yourself

Other text-decoration Values for text decoration:

Example

h1 {
  text-decoration: overline;
{}
h2 {
  text-decoration: line-through;
{}
h3 {
  text-decoration: underline;
{}

Try it yourself

Note:It is recommended not to underline non-link text, as this often confuses readers.