<br clear="left" /> <br clear="right" /> <br clear="all" />
The clear parameter tells the browser how to handle the next line if text flows around a floating element. A floating element is an image that has the align parameter or a layer to which the CSS float property is applied.
The result of using the clear parameter depends on the edge over which the element is aligned and the value of clear.
So, if the image is aligned to the left, and the value of the clear parameter of the tag is set to all or left, then the text after the tag will be displayed below the image. Any other values of the clear parameter will make the text to the right of the image and wrap around it.
Source: https://habr.com/ru/post/113590/
All Articles