htmlcss

The clear property is used in CSS and certain HTML elements. This property specifies whether an element can be next to floating elements that precede it or must be moved down (cleared) below them. This property can be applied to both floating and non-floating elements.


Values


HTML example:

TEXT
<br style="clear:both;" />
Cleared text.


CSS example:

br {
    clear:both;
}