+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