I have a great working 3 panel liquid layout but I just noticed that a problem with it.

When there is a div with a float:left and another div below with clear:both, all the divs below the cleared div get pushed all the way down to the height of the right column. Sorry is a huge space between Section 1 and Section 2.

You can see the code here. http://jsfiddle.net/QbSsb/

Is there a workout to this or a 3 panel liquid layout?

Thanks in advance, Susan

link|improve this question

14% accept rate
you mean that if I pull the window out wide, section 2 aligns at the bottom? – boblet Oct 25 '11 at 21:15
feedback

2 Answers

up vote 1 down vote accepted

the simple answer is instead of clear: both; just use clear: left; that's why they have clear left, right and both

link|improve this answer
clear: left did the trick. – Susan Sampi Oct 26 '11 at 4:51
feedback

Use this one for your clear separator

<div style="clear:inherit; padding:20px 0px;"></div>
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.