I use CSS3 to perform the following conversion to div:
'-webkit-transform' : 'rotateX(45deg) rotateZ(-45deg)'
The result looks like this:

Or as in this script: http://jsfiddle.net/kteSW/
As we see here, the angle is 36deg instead of 30deg (sin45 * sin45). Does anyone know the cause of this problem? Is this intended or is it a CSS3 bug?
UPDATE:
I already set the options:
-webkit-transform-style: preserve-3d;
-webkit-perspective: none;
So, everything should be rendered in an orthogonal way. However, the angle is not yet 30deg.
source
share