vote up 5 vote down star

This is one of those things that you read once, say "aha!" and then forget. Exactly my case.

Why is the line-break tag in xhtml preferentially written with a space <br /> and not in the also ok format <br/> ? I remember the reason was interesting, and as you can imagine it's not easy to find with google.

For sure it's not an issue of xml well-formedness. From W3C

[44]    EmptyElemTag	   ::=   	'<' Name (S Attribute)* S? '/>'	

   Empty-element tags may be used for any element which has no content, whether
   or not it is declared using the keyword EMPTY. For interoperability, the 
   empty-element tag should be used, and should only be used, for elements which 
   are declared EMPTY.

Examples of empty elements:

<IMG align="left"  src="http://www.w3.org/Icons/WWW/w3c_home" /> 
<br></br> 
<br/>

So the space at the end is optional.

flag

78% accept rate
it just looks nice. i guess... – thephpdeveloper Nov 2 at 2:48
no no, there was another reason. – Stefano Borini Nov 2 at 2:48
1  
Also <br/> is XML and not HTML. HTML is simply <br> – cletus Nov 2 at 2:54
you mean XHTML, not XML. – snicker Nov 2 at 20:52
He meant XML: checkout what the X in XHTML stands for. – ntd Nov 13 at 9:26

3 Answers

vote up 10 vote down check

If I recall correctly it's simply because some older browsers had problems with a self-closing tag without a space before the slash. I doubt it's an issue nowadays, but a lot of developers (myself included) got into the habit of including the space.

Edit: Ah, here we are:

http://www.w3.org/TR/xhtml1/#guidelines

Include a space before the trailing / and > of empty elements, e.g. <br />, <hr /> and <img src="karen.jpg" alt="Karen" />. Also, use the minimized tag syntax for empty elements, e.g. <br />, as the alternative syntax <br></br> allowed by XML gives uncertain results in many existing user agents.

link|flag
vote up 4 vote down

A little background to add to Matt Hamilton's answer.

A least one problem browser was Netscape 4. A quick check shows that in that browser, <br/> (i.e. no space) doesn't cause a line break. In fact, it doesn't appear to do anything. <br /> (i.e. with space) does perform a line break.

When creating polyglot documents that can behave as XHTML or HTML (Note: "behave as" - not "valid") it's necessary to use either <br /> or <br></br>. However, in old browsers, and even in modern browsers when rendering a page in quirks mode, </br> behaves like <br>, so <br></br> produces two line breaks.

link|flag
I would say... facepalm for the </br> producing a line break :) – Stefano Borini Nov 3 at 6:37
It's because one person did it like that once, whined that it didn't work, and then the browsers started supporting it. That's why Firefox uses 600M of RAM... lots of "special cases". – jrockway Nov 3 at 6:58
vote up 4 vote down

<br /> is valid (old) HTML, while <br/> is not. If you are serving your XHTML as XML, it doesn't matter. If you are serving it as text/html, then it needs to be valid HTML in addition to being valid HTML. (Why serve XHTML as HTML? Because IE doesn't understand XHTML as XML, and because no major browser will start rendering XHTML mid-way through downloading the text, but they will do that to HTML. My blog appears to load slowly not because the site is slow, but because the browser won't start rendering the page until everything has been fetched. I hate browsers.)

link|flag
This is the real reason. HTML doesn't have the self-closing tag syntax — whether a tag needs to be explicitly closed is a function of the kind of tag it is (e.g., <br> doesn't while <div> does). When you write <br />, an HTML parser sees a <br> tag with an empty attribute called "/" (just like the empty "checked" attribute for inputs). Since the <br> tag is already self-closing in HTML, this works the same in both HTML and XML modes. – Chuck Nov 2 at 20:58
@Chuck. I've seen that explanation before, but I can't say I believe it. If it were so then renderings of the DOM with say Firebug, or Hixie's Live DOM Viewer should show the attribute as /="", but they don't. See here: software.hixie.ch/utilities/js/… (Apologies for putting a "checked" attribute on a br element - I know it's not valid but it demonstrates my point.) – Alohci Nov 2 at 21:13
@Alohci: That's an implementation detail of Firefox. Going purely by the HTML standard, there is no <br/> tag. – Chuck Nov 2 at 21:25
Plain false: the only valid br element in HTML 4.01 is <BR>. <br /> or <br/> are both invalid tag soup, but the former has less problems in real browsers. – ntd Nov 12 at 23:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.