Guest User

Untitled

a guest
Nov 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $footer_height: 240px;
  2.  
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. }
  7.  
  8. html {
  9. height: 100%;
  10. body {
  11. height: 100%;
  12. #wrapper {
  13. min-height: 100%;
  14. }
  15. #content {
  16. overflow: auto;
  17. padding-bottom: $footer_height;
  18. }
  19. #footer {
  20. position: relative;
  21. margin-top: -1 * $footer_height;
  22. height: $footer_height;
  23. clear: both;
  24. }
  25. }
  26. }
  27.  
  28. /*Opera Fix*/
  29. body:before {
  30. content: "";
  31. float: left;
  32. height: 100%;
  33. width: 0;
  34. margin-top: -32767px;
  35. }
Add Comment
Please, Sign In to add comment