files/en-us/web/html/reference/elements/br/index.md
The HTML element produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.
{{InteractiveExample("HTML Demo: <br>", "tabbed-standard")}}
<p>
O'er all the hilltops
Is quiet now,
In all the treetops
Hearest thou
Hardly a breath;
The birds are asleep in the trees:
Wait, soon like these
Thou too shalt rest.
</p>
p {
font-size: 1rem;
font-family: sans-serif;
margin: 20px;
}
As you can see from the above example, a element is included at each point where we want the text to break. The text after the begins again at the start of the next line of the text block.
[!NOTE] Do not use
to create margins between paragraphs; wrap them in {{htmlelement("p")}} elements and use the CSS {{cssxref('margin')}} property to control their size.
This element's attributes include the global attributes.
clear {{Deprecated_Inline}}
The element has a single, well-defined purpose — to create a line break in a block of text. As such, it has no dimensions or visual output of its own, and there is very little you can do to style it.
You can set a {{cssxref("margin")}} on elements themselves to increase the spacing between the lines of text in the block, but this is a bad practice — you should use the {{cssxref("line-height")}} property that was designed for that purpose.
Creating separate paragraphs of text using is not only bad practice, it is problematic for people who navigate with the aid of screen reading technology. Screen readers may announce the presence of the element, but not any content contained within s. This can be a confusing and frustrating experience for the person using the screen reader.
Use <p> elements, and use CSS properties like {{cssxref("margin")}} to control their spacing.
In the following example we use elements to create line breaks between the different lines of a postal address:
Mozilla
331 E. Evelyn Avenue
Mountain View, CA
94041
USA
{{ EmbedLiveSample('Basic_br', 640, 120) }}
{{Specifications}}
{{Compat}}