Reputation: 51272
What is the difference between -moz-transform and -moz-transform-origin ?
Upvotes: 2
Views: 3273
Reputation: 920
-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.
Upvotes: 5