CSS Text Decoration

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

Try It Yourself

Others text-decoration Value used 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.