: The BR Element
Last updated: 2026-09-12
<br>The BR Element
The <br> (line break) element inserts a line break in text. It's a void element for poems, addresses, etc. Don't use it for paragraph spacing — use CSS margins instead.
| Category | Text Content |
|---|---|
| Content Model | None (void element) |
| Allowed Parents | Any element that accepts phrasing content |
| Content Tag | Self-closing — no closing tag needed |
| Status | Standard |
📝 Syntax
First line<br>Second line
▶ Example
Edit the code below and see the live result in the playground:
🌐 Browser Support
| Browser | |||||
|---|---|---|---|---|---|
| <br> | ✓ v1 | ✓ v12 | ✓ v1 | ✓ v1 | ✓ v1 |
| Supported in all major browsers | |||||
Warning: Avoid stacking multiple <br> elements for large gaps; use CSS margin/padding instead.