HTML Link without an Underline

Creating an html link without an underline is very simple. There's a specific CSS property called text-decoration which allows you to style the appearance of links in a number of different ways.  You can also choose to either style all html links, or specific links.

HTML Example of links with and without underlines:

This is a regular link
This is a link without an underline

CSS Of the HTML example above

a#customname {
    text-decoration: none;
} 

Result:

This is a regular link This is a link without an underline

Note, text-decoration has several other options other than "none". They are as follows:

  1. text-decoration: overline;
  2. text-decoration: line-through;
  3. text-decoration: underline;
  4. text-decoration: blink;
Share

Learn how to design amazing websites