Answers for "footer fixed to bottom of screen"

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 "footer fixed to bottom of screen"

Browse Popular Code Answers by Language