The clear
property in
clear: none|left|right|both|initial|inherit;
none
: This is the default value.
left
: It is used to push the elements below the left floated elements.
right
: It pushes the elements below the right floated elements.
both
: It to pushes the elements below the right and left floated elements.
initial
: This sets the value to its default value.
inherit
: This is used to inherit property from its parent value.
The following is the basic clear
property.