HTML br Tag: The Dos and Don'ts of Adding an HTML Line Break (2024)

In HTML, a paragraph always starts on a new line — but what if you want text within a paragraph to start on a new line? In that case, you’ll need to create an HTML line break.

HTML br Tag: The Dos and Don'ts of Adding an HTML Line Break (1)

Let’s take a closer look at this HTML element and how to use it below.

What is a line break in HTML?

In HTML, the <br> element creates a line break. You can add it wherever you want text to end on the current line and resume on the next. The HTML line break element can be used to display poems, song lyrics, or other forms of content in which the division of lines is significant to the meaning or appearance of the content.

Below is an HTML file with a <p> and <br> element.

HTML br Tag: The Dos and Don'ts of Adding an HTML Line Break (3)

Most times, the <p> tag is enough to divide your content. But the <br> tag can be useful in certain situations.

For example, say you’re writing a blog post about how to address an envelope or package. You want to include an example of how to format the sender’s and recipient’s addresses.

In that case, you could use the line break element to place the sender’s and recipient’s names, street addresses, and cities, states, and ZIP codes all on separate lines.

Below you’ll see the same address rendered in two different ways. The first uses one paragraph element and multiple line breaks. The second uses multiple paragraph elements and no line breaks. As a result, unnecessary padding and margins are added between lines.

See the Pen Paragraph vs Line Break Element by Christina Perricone (@hubspot) on CodePen.

Pro tip: When you want a section of content that’s related to appear on different lines, like a postal address or stanza of a poem, use line break elements instead of paragraph elements.

While I would recommend using line breaks for the above example, it does have a few caveats.

Should you use the HTML <br> element?

Yes, but only after you've exhausted other options.

The HTML <br> element is used to insert a line break or a single empty line in a block of text. While it may seem convenient, I would generally not recommend using <br> to create spacing or structure in your content.

Here's why:

  • No Semantic Meaning: The <br> tag doesn't have semantic meaning in HTML, like a <p> or a <div> tag, which denotes a paragraph and divided section, respectively. I would describe <br> as an "empty" tag that has visual but not structural significance in HTML. That's problematic, so <br> elements are best avoided unless there's no other option.
  • Lack of Accessibility: Screen readers and other assistive technologies may not recognize <br> as a visual line break. This can lead to confusion for users who rely on assistive technology to navigate and understand content.
  • Responsiveness Issues: <br> is a hard-coded line break and doesn't adapt well to different screen sizes or responsive layouts. When the content is viewed on different devices or browser windows, it can result in inconsistent line spacing and readability problems.

As I said, it's best to exhaust other options first. Here's what I would recommend:

  • Margin and Padding: Use CSS properties like margin and padding to create spacing between paragraphs, headings, or other elements. This allows for more control over the spacing and ensures consistency across different devices.
  • Block-level Elements: Use appropriate block-level elements, such as <p>, <div>, or <section>, to separate different sections of content. These elements naturally create vertical space and structure.
  • CSS Flexbox and Grid: If you need to create more complex layouts and spacing, CSS Flexbox and Grid are powerful tools for setting up flexible and responsive designs. They allow for precise control over the spacing and positioning of elements.

Unfamiliar with the above concepts? Download our free guide below to learn more about HTML and CSS basics and hacks.

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

HTML br Tag: The Dos and Don'ts of Adding an HTML Line Break (4)

Free Guide: 25 HTML & CSS Coding Hacks

Tangible tips and coding templates from experts to help you code better and faster.

  • Coding to Convention
  • Being Browser-Friendly
  • Minimizing Bugs
  • Optimizing Performance

Loading your download form

You're all set!

Click this link to access this resource at any time.

Access now

Learn more

Now that we understand the ideal use case of line breaks and other alternatives you should try first, let’s walk through how to create them in HTML.

How to Do a Line Break in HTML

To do a line break in HTML, use the <br> tag. Simply place the tag wherever you want to force a line break. Since an HTML line break is an empty element, there’s no closing tag.

Now, let's go over the quick facts of the HTML line break tag.

<br> Accessibility

The <br> tag famously poses accessibility problems, which is why you should use it with caution. Here are some considerations to keep in mind:

  • Screen Readers: <br> elements can pose challenges for screen readers because they don't provide any clear indication of a visual line break.
  • Responsive Design: <br> is a static line break that doesn't adapt well to responsive design. When a website is viewed on different devices or screen sizes, the line break created by <br> could result in inconsistent spacing and layout issues.
  • Keyboard Navigation: For individuals who navigate websites using only a keyboard, excessive or improper use of <br> elements can disrupt the logical flow and navigation of the content.
  • Assistive Technology Compatibility: While most modern assistive technologies can handle the <br> element to some extent, there is no standard behavior defined for this element.

Now, let's look at an example of accessibility issues posed by the <br> tag.

Say I’d like to display an excerpt from the play Fleabag: The Scriptures. I should use the block quote element, which will automatically add margins on the left and right side of the text.

But for the sake of experimentation, let's use the <br> tag to mimic the indentation of the block quote element.

Here’s the incorrect HTML:

<figure> <p>Love is awful! It’s awful. It’s painful. It’s frightening, it makes you doubt yourself, judge<br> yourself, distance yourself from other people in your life. Makes you selfish. Makes you creepy.<br> It makes you obsessed with your hair. Makes you cruel. Makes you say and do things you never<br> thought you would do.</p> <figcaption>—PRIEST, <cite>Fleabag: The Scriptures</cite></figcaption> </figure>

Here's the result:

See the Pen Incorrectly using <br> element to display excerpt from play by Christina Perricone (@hubspot) on CodePen.

That looks odd, right?

If you resize your browser window, you'll notice that the paragraph element with line break elements results in jagged edges and uneven lines of text.

So not only does this code example have accessibility issues — it also has layout issues. That's why it's important to understand when to use the line break element, and when not to.

Here’s the correct HTML with the <blockquote> element applied:

<figure> <blockquote> <p>Love is awful! It’s awful. It’s painful. It’s frightening, it makes you doubt yourself, judge yourself, distance yourself from other people in your life. Makes you selfish. Makes you creepy. It makes you obsessed with your hair. Makes you cruel. Makes you say and do things you never thought you would do...</p> </blockquote> <figcaption>—PRIEST, <cite>Fleabag: The Scriptures</cite></figcaption> </figure>

Here's the result:

See the Pen YzZpaRG by Christina Perricone (@hubspot) on CodePen.

Much better.

Using the block quote element is not only better for accessibility — it's also better for a responsive web design.

If you resize your browser window, you'll notice that the block quote element automatically adjusts to the screen size and has no jagged edges or uneven lines of text.

Pro tip: Use a semantic element, like the block quote element, when applicable to make your site more accessible to readers using a screen reader. It's much better to use a semantically meaningful HTML element, or CSS styling, to avoid layout issues like choppy text and jagged edges.

To learn more about making your website accessible, check out The Ultimate Guide to Web Accessibility.

<br> CSS Styles

Unlike other HTML elements, the <br> element does not have any specific CSS styles that apply to it directly.

CSS styles are typically applied to elements that have block-level or inline-block display properties. In contrast, the <br> element is an empty element without any content or specific layout.

That said, you can indirectly affect the styling of line breaks by applying styles to the container around the <br> element.

<br> Browser Support

The HTML line break element is supported by all modern web browsers. This includes:

  1. Google Chrome
  2. Mozilla Firefox
  3. Microsoft Edge
  4. Safari
  5. Opera
  6. Brave
  7. Internet Explorer (versions 8 and above)

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

HTML br Tag: The Dos and Don'ts of Adding an HTML Line Break (5)

50 Free Coding Templates

Free code snippet templates for HTML, CSS, and JavaScript -- Plus access to GitHub.

  • Navigation Menus & Breadcrumbs Templates
  • Button Transition Templates
  • CSS Effects Templates
  • And more!

Loading your download form

You're all set!

Click this link to access this resource at any time.

Access now

Learn more

HTML <br> Break Tag Examples

Since the <br> element is most commonly used to display poems or addresses, let's look at an example. Say I want to display “kitchenette building” by Gwendolyn Brooks on a web page.

In that case, I’d wrap the stanzas in <p></p> tags. Then I’d place the new line HTML tag <br> wherever I want the lines to break in each stanza.

Here’s the HTML:

<h2>kitchenette building</h2><p>We are things of dry hours and the involuntary plan,<br>Grayed in, and gray. “Dream” makes a giddy sound, not strong<br>Like “rent,” “feeding a wife,” “satisfying a man.”</p><p>But could a dream send up through onion fumes<br>Its white and violet, fight with fried potatoes<br>And yesterday’s garbage ripening in the hall,<br>Flutter, or sing an aria down these rooms</p><p>Even if we were willing to let it in,<br>Had time to warm it, keep it very clean,<br>Anticipate a message, let it begin?</p><p>We wonder. But not well! not for a minute!<br>Since Number Five is out of the bathroom now,<br>We think of lukewarm water, hope to get in it.</p><p><em>-Gwendolyn Brooks</em></p>

Here’s the result:

See the Pen Poem with line break element by Christina Perricone (@hubspot) on CodePen.

Pro tip: Place a <br> element at each point where you want the line of text to break. Meaning, the text after the <br> will begin at the start of the next line of the text block.

HTML Line Break Not Working

If the HTML line break is not working — especially if you’re working in the text editor of a CMS like WordPress — then you may be using the element incorrectly.

The most common misuse of the new line HTML tag is using it for design and layout purposes. For virtually anything related to layout, you should use CSS instead.

For example, say you want to create more space between blocks of text or other items. Instead of using the <br> tag, you should use a semantic HTML element and the CSS margin or padding properties if necessary.

Why? Two reasons.

  1. Using the HTML line break element when a more semantic element is available makes your code less accessible, especially to readers using screen readers.
  2. Using the <br> tag to force a line break for purely layout purposes might look good on your browser, but not on other browsers or devices — especially if your site is responsive.

A responsive site will automatically change the layout based on screen size. So it will wrap text as needed, which will result in choppy, uneven blocks of text if you use <br> tags.

You should use margin and padding first, or block-level elements such as paragraphs and divs.

Adding Line Breaks in HTML

Whether you want to display poetry, song lyrics, or mailing addresses on your web pages, you’ll need to understand the dos and don'ts of the HTML line break element. Understanding this concept will help you build on your expertise of HTML.

For more on creating web pages, check out HubSpot's free CMS tools.

Editor's note: This post was originally published in May 2021 and has been updated for comprehensiveness.

Topics: HTML

HTML br Tag: The Dos and Don'ts of Adding an HTML Line Break (2024)
Top Articles
Supply Chain Career Paths: Exploring the Diverse Roles, Titles and Types of Jobs in Logistics and Supply Chain Management
RevOps Co-op Blog: Lead Stage vs. Lead Status
Craigslist Home Health Care Jobs
Overton Funeral Home Waterloo Iowa
Fat Hog Prices Today
South Carolina defeats Caitlin Clark and Iowa to win national championship and complete perfect season
Is Csl Plasma Open On 4Th Of July
Nikki Catsouras Head Cut In Half
Clafi Arab
United Dual Complete Providers
Ncaaf Reference
Nestle Paystub
Sotyktu Pronounce
Babyrainbow Private
800-695-2780
Nissan Rogue Tire Size
WEB.DE Apps zum mailen auf dem SmartPhone, für Ihren Browser und Computer.
The Grand Canyon main water line has broken dozens of times. Why is it getting a major fix only now?
Strange World Showtimes Near Roxy Stadium 14
10 Fun Things to Do in Elk Grove, CA | Explore Elk Grove
Nhl Tankathon Mock Draft
Kamzz Llc
Georgia Cash 3 Midday-Lottery Results & Winning Numbers
Albert Einstein Sdn 2023
14 Top-Rated Attractions & Things to Do in Medford, OR
Klsports Complex Belmont Photos
Nurofen 400mg Tabletten (24 stuks) | De Online Drogist
Deepwoken: Best Attunement Tier List - Item Level Gaming
Rund um die SIM-Karte | ALDI TALK
What Time Is First Light Tomorrow Morning
7543460065
Gpa Calculator Georgia Tech
Mars Petcare 2037 American Italian Way Columbia Sc
Miracle Shoes Ff6
Gary Lezak Annual Salary
Top 25 E-Commerce Companies Using FedEx
R/Moissanite
Puretalkusa.com/Amac
If You're Getting Your Nails Done, You Absolutely Need to Tip—Here's How Much
Dragon Ball Super Super Hero 123Movies
Divinity: Original Sin II - How to Use the Conjurer Class
Courses In Touch
Blackwolf Run Pro Shop
Yale College Confidential 2027
Centimeters to Feet conversion: cm to ft calculator
Cch Staffnet
Used Sawmill For Sale - Craigslist Near Tennessee
Wvu Workday
2000 Fortnite Symbols
Craigslist Monterrey Ca
Public Broadcasting Service Clg Wiki
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated:

Views: 5836

Rating: 4.8 / 5 (68 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.