View Full Version : Hover over


crazyneko
01-20-2003, 09:14 PM
I know that there are code where you can hover over and they will blur and stuff. I know the code for the blur affect, but I've seen ones where the text and images flip over.
Thanks. :3

Alcy
01-20-2003, 09:29 PM
If you want it to flip horizontally, add "fliph". If you want it vertical, "flipv".

<style type="text/css">

a:hover
{
filter:fliph;
}

</style>

crazyneko
01-21-2003, 02:51 AM
Thank you!!