CSS Tutorial

The language for styling web pages.

CSS Transitions

CSS Transitions

CSS transitions allow you to change property values smoothly, over a given duration. They provide a way to control animation speed when changing CSS properties.

Transition Properties:

  • transition-property - Which property to animate
  • transition-duration - How long (e.g. 0.3s)
  • transition-timing-function - ease, linear, ease-in, ease-out
  • transition-delay - Delay before starting
  • transition - Shorthand

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics