Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 587 Bytes

transition-property.md

File metadata and controls

23 lines (18 loc) · 587 Bytes

transition-property

The transition-property CSS property sets the CSS properties to which a transition effect should be applied.

Values

none
No properties will transition.
all
All properties that can transition will.
<custom-ident>
A string identifying the property to which a transition effect should be applied when its value changes.

Examples

transition-property="none"
transition-property="all"
transition-property="all, height, color"
transition-property="-specific"