Problem Statement
Which property is used to rotate, scale, or translate elements?
Explanation
`transform` applies 2D/3D transformations like `rotate()`, `scale()`, and `translate()`. It’s GPU-optimized and commonly animated.
Code Solution
SolutionRead Only
div:hover { transform: scale(1.1) rotate(5deg); }