W3 3.2y
4.0y
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y

<BR>

Description

Break the current line and continue on the next line.

DTD

<!ELEMENT BR - O EMPTY                 -- forced line break -->
<!ATTLIST BR
  %coreattrs;                          -- id, class, style, title --
  >
from the HTML 4.0 DTD, "Copyright © W3C, (MIT, INRIA, Keio). All Rights Reserved."

Attributes

Core attributes: class id style title

W3 3.2y
4.0d
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y
CLEAR
Specifies where the next line should begin. Possible values are :

Value Description
ALL The next line starts below the row where both margins are cleared of images.
LEFT The next line starts below the row where the left margin is cleared of images.
NONE The next line starts just below the current line, no matter if any margin is clear of images or not.

This values is not present in the HTML 3.2 standard.

RIGHT The next line starts below the row where the right margin is cleared of images.
n The next line starts below the row where both margins are cleared of images plus n rows of pixels down.

This values is not present in the HTML 3.2 and 4.0 standards.

Examples

Source
This line will break<BR>here.
 
Result
This line will break
here.
 
Source
<IMG src="IMG1.jpg" alt="A nice bird" width="84" height="150" align="right">
<IMG src="IMG1.jpg" alt="A nice bird" width="56" height="100" align="left">
This text will continue <BR clear="left">below the left image.
 
Result
A nice bird A nice bird This text will continue
below the left image.
Statistics