What is the difference between -moz-transform and -moz-transform-origin ?
+1
A:
-moz-transform gives the transformation, -moz-transform-origin says what point within the element is (0, 0) when applying it.
So if you have:
-moz-transform: rotate(90); -moz-transform-origin: center;
then you get a 90 degree rotation around the center of the element.
David Baron
2010-07-20 19:20:01