Advertisement
Guest User

Tryfon

a guest
Oct 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <style>
  2. div{
  3. height:100px;
  4. margin-bottom:10px;
  5. transparent: .2s;
  6. }
  7.  
  8. div:hover{
  9. height: 150px;
  10. }
  11.  
  12. .red{background-color: red;}
  13. .blue{background-color:blue;}
  14. .green{background-color:green;}
  15. </style>
  16.  
  17.  
  18. <div class="red">
  19. </div>
  20.  
  21. <div class="blue">
  22. </div>
  23.  
  24. <div class="green">
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement