CSS transition Property Reference

The CSS transition property is a standard property in CSS Transitions. Review its formal syntax, computed behavior, and practical declarations.

CSS transition Property Reference

The CSS transition property is a standard property in CSS Transitions. Review its formal syntax, computed behavior, and practical declarations.

Updated 2026-08-12

transition overview

The CSS transition property is a standard property in CSS Transitions. Review its formal syntax, computed behavior, and practical declarations.

The property is not inherited by default. Use an explicit global keyword when inheritance is intended.

Syntax and formal definition

transition formal syntax
FieldValue
Formal syntax<single-transition>#
Initial valuetransition-delay, transition-duration, transition-property, transition-timing-function, transition-behavior
Applies toallElementsAndPseudos
InheritedNo
Percentagesno
Computed valuetransition-delay, transition-duration, transition-property, transition-timing-function, transition-behavior
Animation typenotAnimatable
Mediainteractive
Specification groupCSS Transitions
StatusStandard

Practical examples

These declarations demonstrate valid ways to set transition. The initial and inherit global keywords remain available even when a property-specific value is preferable.

transition live example
CSS .reset-example { transition: initial; } .inherit-example { transition: inherit; } @supports (transition: color 150ms ease, transform 150ms ease) { .supported { transition: color 150ms ease, transform 150ms ease; } }

Description

The CSS transition property is a standard property in CSS Transitions. Review its formal syntax, computed behavior, and practical declarations.

References

  1. MDN: transition
  2. MDN: CSS Properties Reference

Similar or alternative tools

Don't forget to set a bookmark for tool.io!
Privacy | Imprint | Cookies