faqts : Computers : Internet : Web : CSS

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

15 of 16 people (94%) answered Yes
Recently 9 of 10 people (90%) answered Yes

Entry

How do I make a non-underlined link

Feb 22nd, 2001 08:49
Ben Gordon,


Browser Compatibility: IE4/NS4/Opera3.5
You can remove the underline on an individual link with an inline style 
<A HREF="url" style="text-decoration:none">Text</A>

You can do it for every link on the page with a style sheet inside your 
<head></head> tags of your page: 
<STYLE type="text/css">
<!--
A { text-decoration:none }
-->
</STYLE>