What are CSS3 Transitions?

Member

by maiya , in category: Design , 4 years ago

What are CSS3 Transitions?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by rickey_sauer , 4 years ago

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 Threads:

What is CSS3 Flexbox?
What is the CSS3 animation?
What is the difference between CSS and CSS3 ?
What is the syntax of opacity in CSS3?
What is the word wrap/word wrapping in CSS3?
What Are the Best Practices for Managing Oracle Sql Databases?