vote up 6 vote down star
3

What are all the valid self-closing tags (e.g. <br/>) in XHTML (as implemented by the major browsers)?

I know that XHTML technically allows any tag to be self-closed, but I'm looking for a list of those tags supported by all major browsers. See http://dusan.fora.si/blog/self-closing-tags for examples of some problems caused by self-closing tags such as <div />.

flag

i'll give you one. not gonna research all for you. – Darren Kopp Sep 18 '08 at 22:14
Doesn't this default the one of the purposes of XHTML? I thought one of the advantages of XHTML was that you could use an XML generator to generate HTML. Why would any XML generator be aware of what tags are allowed to be self-closing? Too weird. – Elijah Nov 11 '08 at 23:24

11 Answers

vote up 11 vote down check

From the W3 Schools reference site:

<area />
<base />
<basefont />
<br />
<hr />
<input />
<img />
<link />
<meta />
link|flag
vote up 6 vote down

One tag to be very careful with on this topic is the <script> tag. If you have an external source file, it WILL cause problems when you self close it. Try it:

<script type="text/javascript" src="external.js" />

This will work in Firefox, but breaks in IE6 at least. I know, because I ran into this when overzealously self closing every tag I saw ;-)

link|flag
This has caught me so many times – John Sheehan Sep 26 '08 at 23:24
Affects all versions of MSIE: webbugtrack.blogspot.com/2007/08/… – scunliffe Oct 1 '08 at 20:59
+1 for this pernicious evil. Why can't they get this right? – sylvarking Nov 11 '08 at 23:25
2  
<script> doesn’t self-close in Firefox 3. – hsivonen Nov 12 '08 at 8:11
Definitely wasted a few days in my career tracking this bug down. – Triptych Jul 22 at 14:59
show 2 more comments
vote up 5 vote down

Every browser that supports XHTML (Firefox, Opera, Safari) supports self-closing syntax on every element.

It doesn't seem to work for you probably because you have HTML with XHTML DOCTYPE. DOCTYPE does not change how document is interpreted. MIME type does.

You'll find more on the issue here: Understanding HTML, XML and XHTML:

In fact, the vast majority of supposedly XHTML documents on the internet are served as text/html. Which means they are not XHTML at all, but actually invalid HTML that’s getting by on the error handling of HTML parsers. All those “Valid XHTML 1.0!” links on the web are really saying “Invalid HTML 4.01!”.

link|flag
vote up 4 vote down

The self-closing syntax works on all elements in application/xhtml+xml. It isn’t supported on any element in text/html, but the elements that are “empty” in HTML4 or “void” in HTML5 don’t take an end tag anyway, so if you put a slash on those it appears as though the self-closing syntax were supported.

link|flag
vote up 2 vote down

The last time I checked, the following were the empty/void elements listed in HTML5.

Valid for authors: area, base, br, col, command, embed, eventsource, hr, img, input, link, meta, param, source

Invalid for authors: basefont, bgsound, frame, spacer, wbr

Besides the few that are new in HTML5, that should give you an idea of ones that might be supported when serving XHTML as text/html. (Just test them by examining the DOM produced.)

As for XHTML served as application/xhtml+xml (which makes it XML), XML rules apply and any element can be empty (even though the XHTML DTD can't express this).

link|flag
vote up 1 vote down

Hope this helps someone:

<base />
<basefont />
<frame />
<link />
<meta />

<area />
<br />
<col />
<hr />
<img />
<input />
<param />
link|flag
vote up 0 vote down

What about <meta> and <link>? Why aren't they on that list?

Quick rule of thumb, do not self-close any element which is intended to have content, because it will definitely cause browser problems sooner or later.

The ones which are naturally self-closing, like <br> and <img>, should be obvious. The ones which aren't ... just don't self-close them!

link|flag
vote up -1 vote down

<hr /> is another

link|flag
vote up -1 vote down

Check w3 reference.

link|flag
3  
w3schools is not affiliated with W3C and is not authoritative on the matter. – porneL Oct 16 '08 at 18:19
2  
@porneL but their SEO is so damn good. W3C could learn a thing or two – Triptych Jul 22 at 15:00
vote up -1 vote down

You should have a look the xHTML DTD (http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd), there all listed. Here is a quick review all the main ones :

<br />
<hr />
<img />
<input />
link|flag
vote up -1 vote down

Another self closing tag problem for IE is the title element. When IE (just tried it in IE7) sees this, it presents the user a blank page. However you "view source" and everything is there.

<title/>

I originally saw this when my XSLT generated the self closing tag.

link|flag

Your Answer

Get an OpenID
or

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