I have a DIV that I want to touch the bottom of the screen (for appearance reasons). Sometimes the content is enough tall to do that, but sometimes the content is too short and the DIV won't touch the bottom of the screen. Is there a simple workaround?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you set min-height to 100% for the DIV, you also need to include:
Elements expand to the size of their container, so make sure the container (being the page itself) has a height of 100% as well. |
|||
|
This is way to do it: http://ryanfait.com/sticky-footer/ |
|||
|
|
|
IE6 fix to go along with Jimmeh's answer:
|
|||
|
|
min-height:100% should work assuming it's not in another div with a height set, |
|||||||||||||
|
|
If you set the div's CSS to position:absolute you can use:
|
|||||||
|