Advertisement
Guest User

Untitled

a guest
Dec 10th, 2013
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #diss {
  5. width: 100px;
  6. min-height: 20px;
  7. border: 2px solid black;
  8. background: white;
  9. position: absolute;
  10. left: 50%;
  11. top: -1000px;
  12. -webkit-transition: all 0.3s ease;
  13. -moz-transition: all 0.3s ease;
  14. -ms-transition: all 0.3s ease;
  15. -o-transition: all 0.3s ease;
  16. transition: all 0.3s ease;
  17. }
  18. #hoverHere:hover #diss {
  19. top: 100px;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div id="hoverHere">Hover on me!
  25. <div id="diss">This should not be here.</div>
  26. </div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement