You use the hover pseudo class on links to change the characteristics of a link when you mouse over.
a:hover{
color: red;
etc.
}
If you use pseudo classes, then you must make sure the order is correct:
a:link
a:visited
a:hover
a:active
just remember LoVeHAte
Oh... and the hover will only work on links in IE 6 and below. If you want to hover anything else you will need a bit of scripting.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 01-04-2007 at 02:13 PM..
|