I have a div in a page (footer) and I want the following to happen with CSS:

If the page has not enough content to fill the window, the div should be at the very bottom. If the page has enough content (and a scroll bar perhaps appears) then I want the div to be after all the content.

If I do it with position absolute etc, I can't get the second case to work.

Any ideas?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I think you're looking for 100% min-height layout. Check out this post: 100% Min Height CSS layout.

link|improve this answer
Thank you William – George Kastrinis Sep 12 '11 at 14:31
feedback

You want to use a sticky footer.

For example: http://ryanfait.com/sticky-footer/

or if you google Sticky footer you find a few alternatives

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.