CSS Text Decoration

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;
}

Try It Yourself

Others 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 add underlines to non-link text, as this often confuses readers.