I'd like to make a rotation of an image, so I red that we can do that width
.rotate {
-webkit-transform: rotate(-9deg);
-moz-transform: rotate(-9deg);
transform: rotate(-9deg);}
but, this is if you want to rotate it according to z axis ( horizontal is x, vert. y, and z comes to you if you see what I mean)
Okay, I would like to rotate it on the x or y axis to give it a 3d effect. Is that possible in css3 ? Thanks