Advertisement
vedranvinko

footer bottom

Jul 17th, 2015
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. * {
  2.  box-sizing: border-box;
  3. }
  4. *:before,
  5. *:after {
  6.  box-sizing: border-box;
  7. }
  8. html,
  9. body {
  10.  height: 100%;
  11.  position: relative;
  12. }
  13. .main-container {
  14.  min-height: 100vh; /* will cover the 100% of viewport */
  15.  overflow: hidden;
  16.  display: block;
  17.  position: relative;
  18.  padding-bottom: 100px; /* height of your footer */
  19. }
  20. footer {
  21.  position: absolute;
  22.  bottom: 0;
  23.  width: 100%;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement