MrMistreater

Auto-resizable Background

Jun 7th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.29 KB | None | 0 0
  1. /* Use this markup: */
  2.  
  3. <div id="background">
  4. <img src="img.jpg" class="stretch" alt="" />
  5. </div>
  6.  
  7. */ with the following css: */
  8.  
  9. #background {
  10.     width: 100%;
  11.     height: 100%;
  12.     position: absolute;
  13.     left: 0px;
  14.     top: 0px;
  15.     z-index: 0;
  16. }
  17.  
  18. .stretch {
  19.     width:100%;
  20.     height:100%;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment