Transitions

CSS transitions enable smooth animations when changing properties.

Snippet:

transition: all 0.3s ease-in-out;

Example:

button { transition: background-color 0.5s ease; } button:hover { background-color: red; }