![]() |
|
|
+ Search |
![]()
|
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>