Advertisement
Guest User

Css Hintergrund

a guest
Nov 10th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.47 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #hintergrund {
  5.   position:absolute;
  6.   width:100%;
  7.   height:100%;
  8.   z-index:1;
  9. }
  10.  
  11. #scrollbereich {
  12.   position:absolute;
  13.   top:0;
  14.   left:0;
  15.   width:100%;
  16.   height:100%;
  17.   overflow:auto;
  18.   z-index:2;
  19. }
  20.  
  21. #inhalt {
  22.   padding:20% 15% 5% 15%;
  23.   z-index:2;
  24. }
  25. </style>
  26. ...
  27. </head>
  28. <body>
  29. <div>
  30.     <img id="hintergrund" src="" alt="" title=""></img>
  31. </div>
  32. <div id="scrollbereich">
  33. <div id="inhalt">
  34. ...
  35. </div>
  36. </div>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement