vote up 4 vote down star

Hi,

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.....

Thanks, Don

flag

40% accept rate
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 at 17:45

7 Answers

vote up 1 vote down

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|flag
vote up 5 vote down

Likely not.

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

link|flag
Great simple and effective tip!! – Denis Hoctor Oct 27 at 15:52
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 4 vote down

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

link|flag
I followed the instructions there, but it didn't work out – Don Feb 9 at 20:48
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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