Member
maiya
What are CSS3 Transitions?
rickey_sauer
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;
}