CSS Property: float
How a box should float, shifting it to the right or left with surrounding content flowing around it.

Possible Values
| Value | Description |
|---|---|
none | No float. Default. |
left | Floats the box to the left with surrounding content flowing to the right. |
right | Floats the box to the right with surrounding content flowing to the left. |
inherit | |
initial | |
unset | |
Example
#boondoggle {
width: 20em;
float: left;
}
