Advertisement
Guest User

Untitled

a guest
Dec 11th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4.     html, body { margin:0; padding:0; height: 100%; }
  5.     #umhang {
  6.         height:100%;
  7.         background:black;
  8.     }
  9.     #umhang_innen {
  10.         min-height:100%;
  11.         background:yellow;
  12.     }
  13.     #layer_left {
  14.         float:left;
  15.         width:500px;
  16.         height:10000px;
  17.         background:blue;
  18.     }
  19.     #layer_right {
  20.         float:left;
  21.         width:200px;
  22.         height:800px;
  23.         background:green;
  24.     }
  25.     #footer {
  26.         margin-top:-50px;
  27.         height:50px;
  28.         background:red;
  29.     }
  30. </style>
  31. </head>
  32. <body>
  33.     <div id="umhang">
  34.         <div id="umhang_innen">
  35.             <div id="layer_left">LEFT</div>
  36.             <div id="layer_right">RIGHT</div>
  37.         </div>
  38.     </div>
  39.     <div id="footer">FOOTER</div>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement