How use clear:both?

css, html

Solution

can you please check this DEMO, it may be help you. use DIV instead of span.

Problem

``` <div class="one">aaaaaaaaaa </div> <div class="one">bbbbbbbbbb </div> <div class="one">ccccccccccc </div> <span style="clear: both"> THIS SHOULD BE BELOW TABLE. WHY NOT? .one { background-color: red; float: left; } ``` http://jsfiddle.net/bLsju/2/ Why in this example still is float? How can i use clear:both?

Original source

Related problems