tags:

views:

20

answers:

1

I have around 3 floating divs, 2 left and 1 right, then i have some other text content under the 3 float´ divs now the text gets under the 3 floating elements, how do i do so it dont get under it, but should still float?

+3  A: 

Some code would help, but with floats usually the problem is that they are not being cleared.

<div style="float: left;"></div>
<div style="float: left;"></div>
<div style="float: right;"></div>
<div style="clear: both;">
    <p>some text under the float</p>
</div>
Dustin Laine