CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

CSS transition property Property

CSS transition-property Property

 

 

The transition-property property is used to specify the name of the CSS property the transition effect is for. A transition effect typically occurs when a user hovers over an element.

 

Default Value:-

 

Its default value is all.

 

Syntax:-

 

Its syntax is:- transition-property: none | all | property | initial | inherit;

 

Further Explanation:-

 

Value Description
none No property will get a transition effect.
all All properties will get a transition effect.
property Defines a comma-separated list of CSS property names the transition effect is for.
initial Sets this property to its default value.
inherit Inherits this property from its parent element.

Code Explanation

All Tutorials related to CSS Properties

All Sections related to CSS