Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 3rd, 2012  |  syntax: None  |  size: 0.52 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <html>
  2. <head>
  3. <style type='text/css'>
  4. html, body {
  5.         height: 100%; margin:0px; padding:0px;
  6. }
  7. .wrapper {
  8.         min-height: 100%;
  9.         height: auto !important;
  10.         height: 100%;
  11.         margin: 0px auto -30px 0; background:red;
  12. }
  13.  
  14. .nav {background:blue; position:absolute; top:0px; left:0px; overflow:hidden; display:block; width:100%; height:27px;}
  15.  
  16. .spacer {padding-top:27px;}
  17. </style>
  18. </head>
  19. <body>
  20. <div class="nav">test</div>
  21. <div class="wrapper">
  22. <div class="spacer">
  23.   content goes here
  24.   </div>
  25. </div>
  26. </body>
  27. </html>