Is there any way to combine (mix) css transform properties without overriding? For example there I want to rotate and scale. http://jsfiddle.net/hyzhak/bmyN3/
Instead of rotate and scale you could use the matrix function.
transform: matrix(a, b, c, d, tx, ty);
In the example given, I believe the following would produce the desired result:
transform: matrix(0,-0.25,0.25,0,0,0);
For an explanation of matrix calculations:
And some useful tools exist for calculating these matrices as CSS, such as: