floated divs skipping some rows code example
Example: Float element should has parent element that defined clear property.
<div>
<div style="float: left;">Div 1</div>
<div style="float: left;">Div 2</div>
<div class="spacer" style="clear: both;"></div>
</div>