Categories
CSS

How to remove blue underline from link with CSS?

Spread the love

To remove blue underline from link with CSS, we set the text-decoration property.

For instance, we write

a {
  color: #ffffff;
  text-decoration: none;
}

to select a elements and remove their blue underline with text-decoration: none;.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *