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:
- text-decoration: overline;
- text-decoration: line-through;
- text-decoration: underline;
- text-decoration: blink;