CSS transition-delay Property Reference
The CSS transition-delay property is a standard property in CSS Transitions. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
transition-delay overview
The CSS transition-delay 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
| Field | Value |
|---|---|
| Formal syntax | <time># |
| Initial value | 0s |
| Applies to | allElementsAndPseudos |
| Inherited | No |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | notAnimatable |
| Media | interactive |
| Specification group | CSS Transitions |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set transition-delay. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
transition-delay: initial;
}
.inherit-example {
transition-delay: inherit;
}
@supports (transition-delay: initial) {
.supported {
transition-delay: initial;
}
}