This is not really an asp question but does anyone know how you can make the text of a hyperlink change color when you put your mouse over it ?
Printable View
This is not really an asp question but does anyone know how you can make the text of a hyperlink change color when you put your mouse over it ?
Try this:
<style>
A:hover {color:'yellow'}
A:Active {color:'red'}
</style>