Is it sometimes bad to use <BR />?

HtmlTagsStyles

Html Problem Overview


Is it sometimes bad to use <BR/> tags?

I ask because some of the first advice my development team gave me was this: Don't use <BR/> ; instead, use styles. But why? Are there negative outcomes when using <BR/> tags?

Html Solutions


Solution 1 - Html

The main reason for not using <br> is that it's not semantic. If you want two items in different visual blocks, you probably want them in different logical blocks.

In most cases this means just using different elements, for example <p>Stuff</p><p>Other stuff</p>, and then using CSS to space the blocks out properly.

There are cases where <br> is semantically valid, i.e. cases where the line break is part of the data you're sending. This is really only limited to 2 use cases - poetry and mailing addresses.

Solution 2 - Html

I think your development team is refering to <br /> in place of margin spacing. To make empty space between elements, use padding / margin styling via CSS.

Bad use of <br />:

<div>
   Content
</div>
<br />
<br />
<br />
<br />
<div>
     More content...
</div>

Good use of <br />:

<style>
     div {
          margin-top:10px;
     }
</style>

<div>
   Content<br />
   Line break
</div>

<div>
     More content...
</div>

Solution 3 - Html

Generally, <br/> is an indication of poor semantic HTML. The most common case is using <br/> to declare paragraph separations, which there are much better ways to do it semantically. See Bed and BReakfast.

There are occasions where it is the proper tag to use, but it is abused often enough that people adopt a "do not use" mentality as to force better semantic thinking.

Solution 4 - Html

What was meant by your team was probably not to use <br>s to split between paragraphs. For example :

<p>I am a paragraph</p>
<p>I am a second paragraph</p>

is the better way to do that, because you can then easily adjust the spaces between paragraphs through CSS. Other than that, I can not think of anything speaking against line breaks as such.

Solution 5 - Html

Same concept applies to why we don't use tables for layout - use tables for tables and CSS for layout.

Use <br/> for break lines in a block of text and CSS if you want to affect the layout.

Solution 6 - Html

Specifying the layout directly makes it difficult adapting the site for different page sizes or fonts for example.

Solution 7 - Html

I will generally always set appropriate margins and padding on elements using CSS - it's a lot less messy than loads of <br />s all over the place apart from being more semantically correct.

Probably the only time I would use a <br /> in preference to the margins and padding set by CSS, even if it's not strictly technically correct, is if it was an isolated incident where slightly more space was needed. If I'd got quite a large stylesheet and it didn't seem worth setting up an additional style just for that one occurence, I may use a <br /> as a one-off.

Like most things, <br />s aren't a bad thing providing they're used correctly.

Solution 8 - Html

If you do this: <BR/> <BR/>

You will get diffrent layout on different browsers.

Deeper:
If you use <BR/> just for line breaks - ok.
If you use <BR/> as a line spacer - not ok.

Solution 9 - Html

I try to write my markup in a way that it's easily readable with CSS disabled. If you're just using BRs to add spacing, it's better to use margins and padding.

Solution 10 - Html

They are to be used to represent newlines. Nothing more. Not to fill up space like as at the average geocities site. There is however only one case wherein they may be useful for other purposes than putting a newline: to clear the floats.

<br style="clear: both;">

Solution 11 - Html

<br /> should be used for line breaks only, and not to apply style to a page. For example, if you need extra space between paragraphs, give them a class and apply the extra padding to the paragraphs. Don't spread out your paragraphs with <br /><br ><br />

Solution 12 - Html

Don't use three or more consecutive <br>s, that's a signal you're using them for stylistic purposes and no, you shouldn't.

Some would say a single <br> is enough and instead of two you should use <p></p>, but there are situations (e.g. screenplays) in which you want to introduce a longer pause without implying a change of topic or a new period starting, like a paragraph usually does.

Solution 13 - Html

They're fine, if used appropriately. For instance, you shouldn't use them in lieu of <p> tags or to create spacing between elements. You're probably doing something wrong if you ever have two in a row.

Solution 14 - Html

Here's an example how <br> can negatively affect styling (run snippet for visuals)

(note the misaligned button and odd space on the right):

button {
  width: 70px;
  height: 70px;
}
#arrows {
  border: solid thin red;
  display: inline-block;
}
#arrows span:first-of-type { 
  text-align: center; 
  display: block;
}
#moveUp {
  margin: 0;
}
/* In the current case instead of <br> use display */
/*
#arrows span:last-of-type { 
  display: block;
}
*/

<div id="arrows">
  <span>
    <button id="moveUp" value="üles">&uarr;</button> 
  </span>
  <button id="moveLeft" value="vasakule">&larr;</button> 
  <button id="moveDown" value="alla">&darr;</button> 
  <button id="moveRight" value="paremale">&rarr;</button> 
  <br>    <!-- note the shifted button and odd space on right -->
  <span>or move with keyboard arrows</span>
</div>

Solution 15 - Html

In HTML (up to HTML 4): use <br>
In HTML 5: <br> is preferred, but <br/> and <br /> is also acceptable
In XHTML: <br /> is preferred. Can also use <br/> or <br></br>

So use of <br> tag is perfectly valid HTML. But use of <br> is not recommended?

Main reason why not to use <br> is because it's not semantic tag & has no content inside. Its use can be avoided like,

<p>some<br>text<p>

can be marked up without <br> as

 <p>some</p>
 <p>text<p>

If you are using <br> other purpose like top-spacing etc. that can be achieved via CSS margin property.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpencilCakeView Question on Stackoverflow
Solution 1 - HtmlGarethView Answer on Stackoverflow
Solution 2 - HtmliamkoaView Answer on Stackoverflow
Solution 3 - HtmlfengbView Answer on Stackoverflow
Solution 4 - HtmlPekkaView Answer on Stackoverflow
Solution 5 - HtmlDieter GView Answer on Stackoverflow
Solution 6 - HtmlMartin BeckettView Answer on Stackoverflow
Solution 7 - HtmlBlissCView Answer on Stackoverflow
Solution 8 - HtmlG.YView Answer on Stackoverflow
Solution 9 - HtmlBStruthersView Answer on Stackoverflow
Solution 10 - HtmlBalusCView Answer on Stackoverflow
Solution 11 - HtmlZoeView Answer on Stackoverflow
Solution 12 - HtmlZJRView Answer on Stackoverflow
Solution 13 - HtmlmpenView Answer on Stackoverflow
Solution 14 - HtmlmhpreimanView Answer on Stackoverflow
Solution 15 - HtmlAamir ShahzadView Answer on Stackoverflow