Given the following HTML:

<div id="container">
  <!-- Other elements here -->
  <div id="copyright">
    Copyright Foo web designs
  </div>
</div>

I would like the div with ID 'copyright' to stick to the bottom of the 'container' div, can I achieve this without using absolute positioning? If the float property supported a value of 'bottom' it seems that would do the trick, but unfortunately, it doesn't.....

link|improve this question

48% accept rate
26  
This situation is one of the reasons why layout tables are not yet gone. Doing this with a table is dead simple and works everywhere. Doing this in CSS is hilariously difficult and cross-browser support is so-so. Let alone that it is impossible to remember how to do it right. – Tomalak Feb 8 '09 at 17:45
Why do you need to do it without absolute positioning? – j-man86 Aug 30 '10 at 5:44
1  
Great answer from @User. It is not that difficult but you dont know @Tomalak. There is a lots of things table can't do. – CallMeLaNN Mar 9 '11 at 9:59
Not so great if you need to pile up several items. – Sebastián Grignoli Aug 4 '11 at 6:22
@Tomalak, how do you go about doing this with a table? – Icode4food Sep 30 '11 at 16:49
feedback

10 Answers

up vote 167 down vote accepted

Likely not.

Assign position:relative to your container div, and then position:absolute; bottom:0; to your copyright div.

link|improve this answer
5  
Great simple and effective tip!! – Denis Hoctor Oct 27 '09 at 15:52
Belying @Tomalak's statement that this is "hilariously difficult". Asking to do this without all the tools is just not right. – Rob Feb 26 '11 at 13:41
1  
Yeah, just remember need position:relative in parent node to make the current parent:absolute still relative to the parent. – CallMeLaNN Mar 9 '11 at 10:00
1  
how to center the copyright? text-align:center on either #container or #copyright doesn't seem to work – morpheus May 9 '11 at 1:49
1  
@morpheus Don't forget to increase your width on #copyright (e.g. #copyright { width:100%; text-align:center; } ) – JNadal Jun 22 '11 at 18:15
show 6 more comments
feedback

This might help: http://www.cssstickyfooter.com/

link|improve this answer
I followed the instructions there, but it didn't work out – Don Feb 9 '09 at 20:48
It's for a fixed size footer. position absolute at bottom + padding bottom for parent will do pretty much the same. Is there a way to do that for a footer with dynamic height? – grisevg Oct 26 '11 at 13:57
feedback

Actually, the accepted answer by @User will only work if the window is tall and the content is short. But if the content is tall and the window is short, it will put the copyright info over the page content, and then scrolling down to see the content will leave you with a floating copyright notice. That makes this solution useless for most pages (like this page, actually).

The most common way of doing this is the "CSS sticky footer" approach demonstrated here, or a slightly slimmer variation here. This approach works great -- IF you have a fixed height footer.

If you need a variable height footer that will appear at the bottom of the window if the content is too short, and at the bottom of the content if the window is too short, what do you do?

Swallow your pride and use a table.

For example:

<!DOCTYPE html>
<html>
<head>
  <style>
    * { padding:0; margin:0; }
    html, body { height:100%; }
    #container { height:100%; border-collapse:collapse; }
  </style>
</head>
<body>
<table id="container">
<tr>
<td valign="top">
  <div id="main">Lorem ipsum, etc.</div>
</td>
</tr>
<tr>
<td valign="bottom">
  <div id="footer">Copyright some evil company...</div>
</td>
</tr>
</table>
</body>
</html>

Try it out. This will work for any window size, for any amount of content, for any size footer, on every browser... even IE6.

If you're cringing at the thought of using a table for layout, take a second to ask yourself why. CSS was supposed to make our lives easier -- and it has, overall -- but the fact is that even after all these years, it's still a broken, counter-intuitive mess. It can't solve every problem. It's incomplete.

Tables aren't cool, but at least for now, they are sometimes the best way to solve a design problem.

link|improve this answer
Seems like the best answer to me. In addition, you can always use "css tables" (display: table[-row/-cell]) instead of html tables. That provides the same layout without the semantics. – chiccodoro Apr 19 at 15:45
feedback

This one worked perfectly for me: http://ryanfait.com/sticky-footer/

link|improve this answer
feedback

If you want it to "stick" to the bottom, regardless of the height of container, then absolute positioning is the way to go. Of course, if the copyright element is the last in the container it'll always be at the bottom anyway.

Can you expand on your question? Explain exactly what you're trying to do (and why you don't want to use absolute positioning)?

link|improve this answer
feedback

Try this;

<div id="container">
  <div style="height: 100%; border:1px solid #ff0000;">
  <!-- Other elements here -->
</div>
<div id="copyright" style="position:relative;border:1px solid #00ff00;top:-25px">
   Copyright Foo web designs
</div>

link|improve this answer
feedback

One of the problems with this is what happens when the content is already greater than the window height. If you could use javascript you could determine the height of the container div and the window then position things properly.

link|improve this answer
feedback

There are many tricks to do this in pure css, Most have some cross browser complications. If you can, you should really try to evaluate your design and see if you can just place the element on the bottom of your design and set a min-height on the element. instead of trying to get the element to sit nicely inside the window.

link|improve this answer
feedback

By a quick trial I had to put the code below the next bit of stuff so that it will show up above that next bit of stuff. Interesting.

link|improve this answer
feedback

Couldn't you just float the div and assign it a bottom property of zero?

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.