Problem Statement
How can you optimize CSS animations for performance?
Explanation
Animate only opacity and transform when possible. Use `will-change` hints, avoid heavy shadows or large repaints, and prefer GPU-accelerated properties.
Code Solution
SolutionRead Only
div { will-change: transform, opacity; }