CSS Animatable


Some CSS properties are animatable, meaning that they can be used in animations and transitions.

Animatable properties can change gradually from one value to another, like size, numbers, percentage and color.

Example -

Animate the background-color from red to blue:

@keyframes mymove {
  from {background-color: red;}
  to {background-color: blue;}
}