Атрибут clear
clear Attribute
{ clear: none| left | right | both}
Specifies if elements allow floating elements (normally images) to the left
or right. More specifically, the value of this property lists the sides where
floating elements are not accepted. With 'clear' set to 'left', an element will
be moved below any floating element on the left side. With 'clear' set to
'none', floating elements are allowed on all sides. For example:
h3 { clear: left }
This attribute is not inherited.