Float property is actually not used to align the text.
This property is used to add element to either right or left or center.
That means if you set float to left then all divisions will be added to left.
<code>
<div>
<div style="Float:left">First</div>
<div style="Float:left">Second</div>
<div style="Float:left">Third</div>
</div>
</code>
then output will be
[First][second][Third]
Vise a versa if you set property Float right for all then it will insert All your div to right
[Third][Second][First]
That means float => left property will add your next element to left of previous one, Same case with right
Also you have to Consider the width of parent element
if sum of width of child element exceed than width of parent element then next element will be added at next line
<code>
<div style="width:100%">
<div style="Float:left;width:50%">First</div>
<div style="Float:left;width:50%">Second</div>
<div style="Float:left;width:50%">Third</div>
</div>
</code>
[First] [Second]
[Third]
So you need to Consider All these aspect to get the perfect result