Footer always at the bottom of the page

A video how to get the footer always at the bottom of the page using utility classes

or a quicker way, write two css classes

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

footer {
  margin-top: auto;
}
5 Likes