Problem Statement
To animate only background-color, which is correct?
Explanation
`transition-property` defines which CSS property changes should animate. Restricting it improves performance.
Code Solution
SolutionRead Only
div { transition-property: background-color; transition-duration: 0.5s; }