Problem Statement
Describe a real-world example where you used CSS animation.
Explanation
Example — Button micro-interaction: On hover, the button scales slightly and changes color with a smooth ease-out, giving responsive feedback without JavaScript.
Code Solution
SolutionRead Only
button:hover { transform: scale(1.05); transition: transform 0.2s ease-out; }