Hyperlinks

H

Henry Contreras

Quick question: I would like my hyperlinks on the footer of my web not to be
underlined. Generally when you hyperlink something it will underline the
link. However, I would like it to show it as underlined only on mouseover.
Any ideas?

Thanks,

Henry Contreras
 
J

Jens Peter Karlsen [FP MVP]

Much simpler to use CSS for this.
<style>
a {text-decoration: none}
a:hover{text-decoration: underline}
</style>

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Top