Go back
html question

html question

General

Vote Up
Vote Down

Hi folks, just a basic question. I can't remember how to stop the browser from underlining a link. Is it an attribute of the a href tag or do i need to do it in a style sheet? It's been a while since i did any coding...😳

Vote Up
Vote Down

Originally posted by Marinkatomb
Hi folks, just a basic question. I can't remember how to stop the browser from underlining a link. Is it an attribute of the a href tag or do i need to do it in a style sheet? It's been a while since i did any coding...😳
In the style sheet:

text-decoration: none;

Vote Up
Vote Down

Originally posted by Daemon Sin
In the style sheet:

text-decoration: none;
That's the ticket. Thanks dude 😀