Guest User

Untitled

a guest
Sep 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. html, body {
  2. height: 100%;
  3. }
  4.  
  5. #container {
  6. min-height: 100%;
  7. }
  8.  
  9. #main {
  10. overflow: auto;
  11. padding-bottom: 150px; /* must be same height as the footer */
  12. }
  13.  
  14. #footer {
  15. position: relative;
  16. margin-top: -150px; /* negative value of footer height */
  17. height: 150px;
  18. clear: both;
  19. }
  20.  
  21. /*Opera Fix*/
  22. body:before {
  23. content: "";
  24. height: 100%;
  25. float: left;
  26. width: 0;
  27. margin-top: -32767px;
  28. }
Add Comment
Please, Sign In to add comment