Image rotate using CSS
Jun 17
You can make an image rotate using CSS as follow:
<style type="text/css">
#nice a:hover img {
-moz-transform: rotate(-3deg);
}
</style>
<center id="nice">
<a href="http://google.com"><img src="http://phpmysqltalk.com/wp-content/uploads/2010/06/tom-and-jerry1.jpg" alt="" title="tom-and-jerry1" width="379" height="285" class="aligncenter size-full wp-image-128" /></a>
</center>

Note:
It doesn’t work on all IE versions :-)







Recent Comments