How can I set position of a <div> to the bottom of page with either CSS or jQuery?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Use Check working example. http://jsfiddle.net/gyExR/ |
|||||||
|
|
in css: position:absolute or position:fixed |
|||
|
|
This has been answered already, but to give a little bit more context for non CSS-experts: Given the HTML
then the following css
will position the text at the lower right corner of your viewport (browser window). Scrolling will move the footer text. If you use
on the other hand, the footer will stay at the bottom of your viewport, even if you scroll. The same technique can be used with |
|||
|
|
