Guest User

Untitled

a guest
Dec 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /**
  2. * Sticky footer
  3. */
  4. body {
  5. height: 100%;
  6. overflow: hidden;
  7. margin: 0;
  8. }
  9.  
  10. #wrapper{
  11. min-height:50%;
  12. height:50%;
  13. background: yellow;
  14. position: absolute;
  15. width: 100%;
  16. }
  17. #footer{
  18. background:red;
  19. width: 100%;
  20. }
  21. #footer, #push{
  22. height:30%;
  23. margin-top: 50%;/* height of the wrapper */
  24. position: absolute;
  25. }
Add Comment
Please, Sign In to add comment