What are CSS3 Transitions?

devquora
devquora

Posted On: Feb 22, 2018

 

CSS3 transitions allow you to change property values smoothly (from one value to another), over a given duration.


div {
    -webkit-transition: width 2s, height 4s; /* Safari */
     transition: width 2s, height 4s;
}

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    CSS3 Interview Questions

    What is the difference between CSS and CSS3 ?

    CSS3 is upgraded version of CSS with new future like Selectors, Box Model, Backgrounds and Borders, Text Effects,2D/3..

    CSS3 Interview Questions

    List out CSS3 modules?

    Below is list of most important CSS3 modules areSelectors Box Model Backgrounds and Borders Text Effects 2D/3D Transfo..

    CSS3 Interview Questions

    What is the CSS3 animation?

    When the animation is created in the @keyframe, bind it to a selector, otherwise, the animation will have no effect. Bin..