Answers for "how to put footer at bottom of viewport"

CSS
5

footer at bottom of body

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
Posted by: Guest on May-09-2021

Code answers related to "how to put footer at bottom of viewport"

Browse Popular Code Answers by Language