vote up 6 vote down star
1

I can't for the life of me find a way to make this work.

If I have 3 divs (a left sidebar, a main body, and a footer), how can I have the sidebar and main body sit next to each other without setting their positions as "absolute" or floating them? Doing either of these options result in the footer div not being pushed down by one or the other.

How might I accomplish this regardless of what comes before these elements (say another header div or something)?

In case it helps, here's an illustration of the two cases I'm trying to allow for:

alt text

Here's a simplified version of the HTML I currently have set up:

<div id="sidebar"></div>
<div id="content"></div>
<div id="footer"></div>
flag

3 Answers

vote up 15 vote down check

You need to specify the footer to clear the float:

#footer{
 clear: both;
}

This forces it under floated elements.

Other options for clear are left and right.

link|flag
Thank you! That is exactly what was needed! I tried using clear but on the floated divs rather than the footer, now it works as expected. – Wilco Nov 8 '08 at 2:59
vote up 0 vote down

Doing either of these options result in the footer div not being pushed down by one or the other?

Try this tool

link|flag
vote up 0 vote down

Right now you're pretty hopeless if you don't want to float anything, nor use position: absolute.

The only alternatives left are:

  • use display:inline-block for the sidebar and content divs (this is not supported by all browsers yet)
  • wait for the css advanced layout module or some other column module (will take forever probably)
  • go back to using tables
link|flag

Your Answer

Get an OpenID
or

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