HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

transition-property

Description

The transition-property property for CSS 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

Examples

1 · all

2 · custom-ident

3 · none

4 · JS