Answers for "place a footer at the bottom of page instead of bottom of content flex"

CSS
1

position footer to stay at bottom of screen flexbox

/* Use flex and set auto margin */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}
Posted by: Guest on December-08-2020

Code answers related to "place a footer at the bottom of page instead of bottom of content flex"

Browse Popular Code Answers by Language