How to show a div.bottom of some 100px height at the bottom of the page. If the content height is less than window's height, div.bottom will be shown at the bottom of the window. If the height of the content is greater than window's height it will be shown at the bottom of the page.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
What you're talking about is called a sticky footer, and it can be done with just html and css. The basic idea is to use a wrapper with
|
||||
|
|
|
Do you need something like this?
|
|||||
|
|
This is my personal favorite for sticky footers: |
|||
|
|
|
You need to use css,
and then call in your script like this
|
|||
|
|
|
I think you mean a footer that is in the bottom of the window only if the content doesn't overflow the window, otherwise it has to go down on the page. Just implement the code from here http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page |
|||
|
|