Forums

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

Home Forums CSS need footer pushed to bottom of page Re: need footer pushed to bottom of page

#111888
Kitty Giraudel
Participant

I’d go with absolute positioning. It seems accurate to me in your case.

#footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
}