CSS3 Transitions Width & Height


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. -webkit-transition: width 0.5s ease-in-out;
  2. -moz-transition: width 0.5s ease-in-out;
  3. -o-transition: width 0.5s ease-in-out;
  4. transition: width 0.5s ease-in-out;
  5. -webkit-transition: height 0.5s ease-in-out;
  6. -moz-transition: height 0.5s ease-in-out;
  7. -o-transition: height 0.5s ease-in-out;
  8. transition: height 0.5s ease-in-out;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.