back

Transition-Property

This is used to specify the name of the CSS property that the transition should be applied to. Multiple properties can be set by separating them with commas.

Its options are:
(1) All, the default, the transition applies to all properties.
(2) None, the transition does not apply to any property.
(3) Property, the name of the property that the transition should be applied to.

For maximum browser support, you should use the following prefixes:
(1) transition-property:
(2) -webkit-transition-property:

Example