Guest User

Untitled

a guest
Jan 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. div {
  2. width: 100px;
  3. height: 100px;
  4. background: red;
  5. -webkit-transition: width 2s, height 2s, -webkit-transform 2s;
  6. transition: width 2s, height 2s, transform 2s;
  7. }
  8.  
  9. div:hover {
  10. width: 300px;
  11. height: 300px;
  12. -webkit-transform: rotate(180deg);
  13. transform: rotate(180deg);
  14. }
Add Comment
Please, Sign In to add comment