i have a css page with “float:right; clear:right” for ads and several blocks in the main text that is meant to flow like images, using “float:left”. The problem is that the main text flowbox has a large gap: they start to show only after the ad boxes that has float:right.

here's a test page : http://xahlee.org/js/ex/test_float.html

I can't understand this. Can anyone explain?

link|improve this question

78% accept rate
feedback

2 Answers

I'm struggling to think of better words to explain why than "that's just how it works".

The easiest way to fix it is to enclose the two "ad boxes" in their own div with float: right:

<div style="float: right;">
    <div class="adbox1">adbox1</div>
    <div class="adbox2">adbox2</div>
</div>
link|improve this answer
feedback

The gap is caused by your clear: right on the 2nd adbox, and the fact that the flowboxes follow the adboxes in the document order.

If you wish to have the boxes at the bottom "flow" next to the paragraphs, place them just before the paragraph tag you wish them to float next.

link|improve this answer
but why would the clear:right leave the gap for those flowboxes since they are float:left? – Xah Lee Apr 12 '11 at 2:44
here's a pretty good explanation: css.maxdesign.com.au/floatutorial/clear.htm – mongo296 Apr 13 '11 at 15:32
feedback

Your Answer

 
or
required, but never shown

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