I have a fluid layout but as a consequence, when there is no enough content in the page, my footer keeps moving up as in this example.
A popular solution to keep the footer at the bottom of the page is using position: fixed
or position: absolute
, however, when I do that, the content can collide with the footer on resizing (you can see what I mean here. Try to resize your window to the point in which the text is hiding behind the footer).
So how can I get a footer at the bottom but moving accordingly with the rest of the page in a fluid layout?
Thanks!