CSS Clear Property
The Clear Property of CSS can be used together with float, to specify if an floated element will allow content on its left or right side.
Possible Values
| none | The element flows normally. |
| left | The element is treated as a block to its left. |
| right | The element is treated as a block to its right. |
Example
div {
float: left;
clear: left;
}Inherited? NO!