Reputation: 2354
So here's the situation:
oX
and oY
are what I have transform-origin
set to, with a Z coordinate of 0
. I want to be able to rotate around the axis drawn, with an arbitrary origin. How? I don't understand how CSS3's rotate3D(x,y,z,rotate)
works.
Upvotes: 0
Views: 8925
Reputation: 2354
To solve this, I had to apply the perspective()
modifier on the parent container - so that the rotate3D()
is in the correct context.
Upvotes: 1