TRANSITION-PROPERTY
The transition-property property specifies the name of the CSS property to which the transition is applied.
SYNTAX
CSS
transition-property: value;
JS
object.style.transitionProperty = "value";
VALUES
<'transition-property'> = none | <single-transition-property>#
none
No property will transition.
<single-transition-property> = all | <custom-ident>
all
Indicates all properties are to be transitioned.
<custom-ident>
Specifies any valid identifier that is not misinterpreted as a keyword.
INITIAL
all