<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 is there still a float in this example? How can I use clear: both?
source
share