It happens something rare with the "perspective" property under Sigil. When I use the form:
Code:
-webkit-transform: perspective(depth) rotateX(deg) rotateY(deg);
works perfectly. For example, with a depth of 200px and rotateY(15deg) I got the following results (first image without perspective effect and second image with the effect):
But when I want to use another syntax, it doesn't work; for example:
Code:
-webkit-perspective: 200;
-webkit-perspective-origin: 50% 90px;
-webkit-transform: rotateY(15deg);
Why is this? Is that can't I set the perspective-origin in any way?
Many thanks in advance for any comment about this.
Rubén