Html – How to prevent child from rotating with parent during the transition?
I'm trying to rotate a parent circle and negate the effect on its children. I tried to negate the effect by using transform: translate(-50%, -50%) rotate(calc(var(--i) * -60deg)) translateY(150px) rotate(calc(var(--i) * 60deg - var(--rotation))) but the children will rotate 60deg…