Your Ad Here

Posted By

cesarkohl on 09/13/11


Tagged

css html footer height 100 bottom


Versions (?)

Perfect footer at bottom on 100% height page


 / Published in: HTML
 

Alternate between the #centro { height } to validate the perfection of this code.

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="utf-8">
  4. <style type="text/css" media="screen">
  5. * { margin: 0; padding: 0; }
  6. html, body { height: 100%; }
  7. #limites { position: relative; margin: 0 auto; height: auto !important; min-height: 100%; width: 960px; background: #999; }
  8. #centro { background: #666; height: 100px; /*height: 1000px;*/ }
  9. #footer { background: red; height: 100px; position: absolute; bottom: 0; width: 100%; }
  10. </style>
  11. </head>
  12. <div id="limites">
  13. <div id="centro">
  14.  
  15. </div>
  16. <div id="footer">Footer</div>
  17. </div>
  18. </body>
  19. </html>

Report this snippet  

Comments

RSS Icon Subscribe to comments
Posted By: mortu on September 13, 2011

Cull piece of code

You need to login to post a comment.