Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do i make a hyperlink with no underline

Status
Not open for further replies.

bretttt

Programmer
Jul 23, 2002
74
US
how do i make a hyperlink with no underline Thanks.

 
either make a class

a.one {text-decoration: none;}
<a href=&quot;link.htm&quot; class=&quot;one&quot;>look i have no underline</a>

or do it inline

<a href=&quot;link.htm&quot; style=&quot;text-decoration: none;&quot;>look i have no underline</a>

[Hammer]
Nike Failed Slogans -- &quot;Just Don't Do It!&quot;
 
<style>
a:link, a:visited {text-decoration: none; color: blue;}
a: hover {color: red;}
</style>


Now all links are blue w/ no underline and they turn red when you pass your mouse over them (in IE --> not sure about NS6).

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top