br clear="all" vs css solution
On the next item you can use the style clear:left
.
Another alternative is to set the overflow
style on the parent of the floating element to make it contain it, like overflow:hidden
.
after the div you've floated. add the following code.
<div style='clear:both'></div>
then continue the rest of the page as usual.