I've been experiencing some odd behavior with Firefox CSS3 transforms.
My issue is illustrated in this JSfiddle: http://jsfiddle.net/R4j6G/2/
Basically, the rotate3d transform function takes a rotation axis as the first three args and an angle as the last. Dealing only with the XY plane (I haven't tested this in the Z dimension) it seems firefox only rotates as expected when the x & y coordinates are either both positive or both negative.
Works:
-moz-transform: rotate3d(1, 1, 0, 180deg);
Doesn't work (shows up the same as ^):
-moz-transform: rotate3d(1, -1, 0, 180deg);
I can't seem to decipher what might be causing this, or if there are any work-arounds to get rotation about an axis in quadrants II or IV to work.