Why X and Y rotations occur around the center of the document?

How to delete that added perspective when we use X and Y rotations?
The perspective effect does not appear with the Z rotation (the first seconds of my video).

to permanently delete perspective add:

<style>
	div {
		perspective: none !important;
	}
</style>

to the head.

... or play with grouping the rotated element. first group; then rotate. the nearer the bounds of the group to the element the less perspective

1 Like

Thank you!
Feature request: an option near the Rotation button would be great. :wink:

2 Likes