Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3. body {
  4. background-color: #ffffff;
  5.  
  6. }
  7.  
  8.  
  9. #image {
  10. position: absolute;
  11. margin: auto;
  12. top: 0;
  13. left: 0;
  14. right: 0;
  15. bottom: 0;
  16. width: 900px;
  17. height: 800px;
  18.  
  19. background-image:url("Image #1 Here");
  20. background-size:100% 100%;
  21.  
  22. }
  23.  
  24. #image:hover {
  25. background-image:url("Rollover Image Here");
  26. background-size:100% 100%;
  27. }
  28. </style>
  29.  
  30. <div id="image">
  31. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement