CSS Fundamentals: Transitions

Timothy Robards
ITNEXT
Published in
3 min readJun 20, 2020

--

In this tutorial, we’re taking a look at how to animate components using CSS transitions!

A transition occurs when we tell a CSS property value to change, over a specified period of time.

We do this with the transition property, which is a shorthand of the following properties:

  • transition-property
  • transition-duration

--

--