change individual link style

liunx

Guest
I want a link to have a different style than that defined in my <s> tag. I want to be able to change the hover style like underlined or whatever of just one link. How can I do that?<!--content-->Use this to add an underline on mouseover effect<br />
<style><br />
.name {text-decoration:none}<br />
.name:hover {text-decoration:underline}<br />
</style><br />
<br />
Then for the link<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://www.google.com" class="name">google</a><br />
<br />
You can replace the word 'name' with whatever you want.<!--content-->exactly what I was looking for. Thanks a lot ;)<!--content-->
 
Back
Top