Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Why isn't my footer at the bottom? Reply To: Why isn't my footer at the bottom?

#241661
Atelierbram
Participant

You can search for examples of “sticky footer” or maybe do something like:

body {
  position: relative;
  min-height: 100%;
  min-height: 100vh;
}
footer {
  position: absolute;
  right: 0;bottom:0;left:0;
}