Problem Statement
What does the CSS transition property do?
Explanation
The `transition` property lets you animate changes to CSS properties smoothly when they change. For example, changing background-color or transform values over a set duration.
Code Solution
SolutionRead Only
button { transition: background-color 0.3s ease; }Practice Sets
This question appears in the following practice sets:
