Answers for "footer always at bottom and bottom of page"

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
1

css footer always at bottom but visible

/* Fix the footer to the bottom */
footer { position: fixed; }
Posted by: Guest on May-16-2021

Code answers related to "footer always at bottom and bottom of page"

Browse Popular Code Answers by Language