FLOAT Property In CSS
float Property in CSS
float property Declares whether a box should float to the left or right of other content, or whether it should not be floated at all.
Possible Value:
left right none
Examplediv { float:left; }
div { float:right; }