View Full Version : Italic on hover


Hazel Shawhshail
05-26-2003, 06:03 AM
What would be the code to make a link italic on hover?

amicus
05-26-2003, 06:20 AM
it's done with css:

a:hover {
font-style: italic;
}

Hazel Shawhshail
05-26-2003, 10:39 PM
Thank you! I didn't realize I could just put it as font-style. I thought it had to be something odd...Making things more difficult than they need to be again.