- Does it support 3D transforms?
- Yes — rotateX, rotateY, rotateZ, perspective, and translate3d are all in the builder. Combine for flip cards, parallax, and isometric effects.
- What's the transform order effect?
- Transforms apply right-to-left. `translate(10px) rotate(45deg)` first rotates, then translates; reverse the order to translate first. The preview updates as you reorder.
- Can I preview hover states?
- Yes — toggle 'on hover' to see the transformed state only on hover. Useful for building hover-lift cards and menu opens.
- Should I use translate or margin for layout shifts?
- translate is composited by the GPU and doesn't trigger layout — much smoother for animations. Use margin only for static positioning.