The transition-property CSS property sets the CSS properties to which a transition effect should be applied.
- 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.
transition-property="none"
transition-property="all"
transition-property="all, height, color"
transition-property="-specific"