float and no float

HTML
<div class="box-float">This Box Has float</div> <br> <br> <br> <br> <div class="box-no-float">This Box Has Not float</div>
CSS
.box-float { background: red; width: 200px; height:200px; float:left; } .box-no-float { background: blue; width: 200px; height:200px; }
JAVASCRIPT
Expand for more options Login