When we use "float:left", or "float:right" styles in DIVs, we come across an issue due to which the contents after those floated DIVs is not appearing in new line, rather they start appearing immediately besides the completion of last floated DIV.
In order to make further contents appearing in new line, add following DIV after floated DIVs:
In order to make further contents appearing in new line, add following DIV after floated DIVs:
<div style="clear: both;"></div>