Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. body {
  2. height: 100%;
  3. width: 100%;
  4. margin: 0;
  5. padding: 0;
  6. overflow: hidden;
  7. background-image:url("bg_beach.jpg");
  8. background-size: 100% 100%;
  9. background-attachment: fixed;
  10. background-repeat: no-repeat;
  11. }
  12.  
  13. .mydiv {
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. bottom: 0;
  18. right: 0;
  19. background-image:url("bg_beach.jpg");
  20. background-size: 100% 100%;
  21. background-attachment: fixed;
  22. background-repeat: no-repeat;
  23. }
  24.  
  25. #main {
  26. position: relative;
  27. }
  28.  
  29. <body>
  30. <div class="mydiv"></div>
  31. <div id="main">
  32. <!-- page content here -->
  33. </div>
  34. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement