Helpful Information
 
 
Category: HTML & CSS
link underline

i'm trying to get rid of the link underline.

i know its a simple
<stlye> tag, but a couple of thins:

how do you remove the underline from a group of links, again? Also, does this work in NS?

Can you remove the underline on a link by link basis?

for the whole document:

<style>
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
</style>

if you want to do it for a group of links, you should create link "classes"

<stlye>
a.ClassName:link {text-decoration: none;}
a.ClassName:visited {text-decoration: none;}
</style>

<a href="page.html" class="ClassName">click</a>

hope that helps.

~Quack










privacy (GDPR)