Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I set position of a <div> to the bottom of page with either CSS or jQuery?

share|improve this question

5 Answers

up vote 5 down vote accepted

Use position:absolute and bottom:0

Check working example. http://jsfiddle.net/gyExR/

share|improve this answer
3  
If the page is longer than the viewport, the div will overlap the content. To fix this problem, check out this example: matthewjamestaylor.com/blog/bottom-footer-demo.htm – grantman16 May 31 '11 at 1:54
Another source to learn about the "exception to the rule" cases is CSS-tricks: css-tricks.com/snippets/css/sticky-footer – b.long Mar 30 '12 at 3:10

You can use position:absolute;bottom:0; if that's all you want.

share|improve this answer

in css: position:absolute or position:fixed

share|improve this answer
Or use a sticky footer in case you need that: ryanfait.com/sticky-footer – lmondria Apr 5 '11 at 6:42

This has been answered already, but to give a little bit more context for non CSS-experts:

Given the HTML

<html>
  <body>
    <p>Some content</p>
    <div class="footer">down there</div>
  </body>
</html>

then the following css

div.footer {
  position: absolute;
  bottom: 0;
  right: 0;
}

will position the text at the lower right corner of your viewport (browser window). Scrolling will move the footer text.

If you use

div.footer {
  position: fixed;
  bottom: 0;
  right: 0;
}

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 top: 0 and left: 0 btw, to position an element at the top left corner.

share|improve this answer

The combination position:fixed; with bottom:0; works for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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