Advertisement
Guest User

Untitled

a guest
May 31st, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.96 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <style>
  5.         .container {
  6.             width: 90%;
  7.             margin: 20px auto;
  8.             background-color: #3D6AA2;
  9.             padding: 20px;
  10.         }
  11.        
  12.         .wrapper
  13.         {
  14.                 top: 5px;
  15.                 bottom: 480px;
  16.                 position: absolute;
  17.                 float:left;
  18.                     z-index: -1;
  19.                     margin-left: 20px;
  20.                
  21.                 background: url('bg.png') repeat left top; /* bg.png is 20x20 white image */
  22.                     width: 980px;
  23.         }
  24.     </style>
  25.    
  26.     <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
  27.   <script src="https://raw.github.com/srobbin/jquery-backstretch/1.1.2/jquery.backstretch.min.js"></script>
  28.     <script>
  29.         $.backstretch("https://raw.github.com/srobbin/jquery-backstretch/master/examples/pot-holder.jpg", {fade: 500});
  30.     </script>
  31. </head>
  32. <body>
  33.         <div class="wrapper"></div>
  34.  
  35.     <div class="container">
  36.         <h1>is the white background missing</h1>
  37.        
  38.     </div>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement