forxtu
9/13/2017 - 8:50 AM

Fixed footer at the bottom

Using flexbox: flex-direction: column; flex: 1 0 auto; flex: 0 0 auto;

* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex: 0 0 auto;
}