Home › Forums › CSS › Why isn't my footer at the bottom? › Reply To: Why isn't my footer at the bottom?
May 16, 2016 at 7:27 am
#241661
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;
}