up vote 46 down vote favorite
28
share [g+] share [fb]

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 />.

link|improve this question

5  
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
It's pretty sad that W3 schools lame reference is the chosen answer, but answer from author of Firefox's parser (hsivonen) is even lower than an incorrect answer. – porneL Jun 13 '10 at 19:02
4  
The reason that the "lame", "incorrect" answer was accepted is because it answered the question that kamens was obviously asking. He wanted to know which elements could be self-closed when serving XHTML as text/html without causing rendering issues in browsers. A lot of pages are written in XHTML and served as text/html even though it's technically incorrect. The question could be improved with this clarification, but answering a different question (what happens when you serve as application/xml, or whether singular tags in text/html should have a closing /) isn't helpful in this instance. – Nick Lockwood Aug 11 '11 at 6:40
feedback

14 Answers

up vote 65 down vote accepted

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

<div/>, <script/>, <br></br> all should work just fine. If they don't, then you have HTML with inappropriately added XHTML DOCTYPE.

DOCTYPE does not change how document is interpreted. Only MIME type does.

W3C decision about ignoring DOCTYPE:

The HTML WG has discussed this issue: the intention was to allow old (HTML-only) browsers to accept XHTML 1.0 documents by following the guidelines, and serving them as text/html. Therefore, documents served as text/html should be treated as HTML and not as XHTML.

It's a very common pitfall, because W3C Validator largely ignores that rule, but browsers follow it religiously. Read Understanding HTML, XML and XHTML from WebKit blog:

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!”.


To test whether you have real XHTML or invalid HTML with XHTML's DOCTYPE, put this in your document:

<span style="color:green"><span style="color:red"/> 
 If it's red, it's HTML. Green is XHTML.
</span>

It validates, and in real XHTML it works perfectly (see: 1 vs 2). If you can't believe your eyes (or don't know how to set MIME types), open your page via XHTML proxy.

Another way to check is view source in Firefox. It will highlight slashes in red when they're invalid.

In HTML5/XHTML5 this hasn't changed, and the distinction is even clearer, because you don't even have additional DOCTYPE. Content-Type is the king.

link|improve this answer
Not correct afaik, because using self-closing versions of <script> or <div> results in different rendering/interpretation. – ZeissS Jun 13 '10 at 12:18
4  
@ZeissS only in text/html. In real XHTML, sent as application/xhtml+xml it's works just fine. Please read article I linked to (or XHTML spec Appendix C) before downvoting. – porneL Jun 13 '10 at 18:37
@porneL can you elaborate in terms of (X)HTML5? What differences should we be aware of with modern browsers that support such markup? – American Yak Nov 2 '10 at 13:59
1  
@Metagrapher if older browsers don't support real XHTML, OR you fail to set the MIME type, then it won't work. However, in XHTML-supporting browsers (all major ones at this point) with application/xhtml+xml MIME type I can guarantee that <script/> will work. With the MIME type. Only. – porneL Mar 26 '11 at 11:18
1  
@capdragon: <label/> works great in IE9 — with the right MIME type. The article you quoted doesn't mention MIME type used, so I assume they (and you) need to read my answer very carefully. – porneL Jun 11 '11 at 15:13
show 7 more comments
feedback

From the W3 Schools reference site:

<area />
<base />
<basefont />
<br />
<hr />
<input />
<img />
<link />
<meta />
link|improve this answer
3  
w3schools.com/tags/default.asp I see 12 tags ending with /> : "area", "base", "basefont", "br", "col", "frame", "hr", "img", "input", "link", "meta", "param" – Mark Oct 23 '10 at 6:37
33  
Please note that W3schools is not affiliated with W3C, and even fails to respond to corrections sent by W3C members. – porneL Nov 5 '10 at 10:02
feedback

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|improve this answer
1  
Thank you for an authoritative answer. – LarsH Mar 30 '11 at 15:37
feedback

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|improve this answer
4  
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? – erickson Nov 11 '08 at 23:25
3  
<script> doesn’t self-close in Firefox 3. – hsivonen Nov 12 '08 at 8:11
2  
This won't work in any browser. – Ms2ger Nov 15 '09 at 8:42
show 4 more comments
feedback

Hope this helps someone:

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

<area />
<br />
<col />
<hr />
<img />
<input />
<param />
link|improve this answer
feedback

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|improve this answer
feedback

You should have a look the xHTML DTDs, there all listed. Here is a quick review all the main ones :

<br />
<hr />
<img />
<input />
link|improve this answer
looks like this link is now broken – Arnout Engelen Sep 22 '11 at 11:33
1  
Fixed and cleaned up markup. Carefull with links in this pages, they are slow to load. – e-satis Sep 22 '11 at 13:36
feedback

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|improve this answer
feedback

Better question would be: what tags can be self-closed even in HTML mode without affecting code? Answer: only those that have empty content (are void). According to HTML 5 specs the following elements are void:

area, base, br, col, command, embed, hr, img, input, keygen, link, meta, param, source, track, wbr

Besides, according to various sources the following obsolete or non-standard tags are void:

basefont, bgsound, frame, isindex

link|improve this answer
feedback

<hr /> is another

link|improve this answer
feedback

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|improve this answer
feedback

I'm not going to try to overelaborate on this, especially since the majority of pages that I write are either generated or the tag does have content. The only two that have ever given me trouble when making them self-closing are:

<title/>

For this, I have simply resorted to always giving it a separate closing tag, since once it's up there in the <head></head> it doesn't really make your code any messier to work with anyway.

<script/>

This is the big one that I very recently ran into problems with. For years I had always used self-closing <script/> tags when the script is coming from an external source. But I very recently started recieving JavaScript error messages about a null form. After several days of research, I found that the problem was (supposedly) that the browser was never getting to the <form> tag because it didn't realize this was the end of the <script/> tag. So when I made it into separate <script></script> tags, everything worked. Why different in different pages I made on the same browser, I don't know, but it was a big relief to find the solution!

link|improve this answer
I edited your post to put backquotes around all your start/end tags. Otherwise, they get eaten. Please check formatting when you post (e.g. using the preview). Markup problems in your post don't increase confidence in your qualification to answer the question about XHTML. – LarsH Mar 30 '11 at 15:42
feedback

use < img //> if you are working with blogger templates or site feed integration

link|improve this answer
feedback

Check w3 reference.

link|improve this answer
4  
w3schools is not affiliated with W3C and is not authoritative on the matter. – porneL Oct 16 '08 at 18:19
6  
@porneL but their SEO is so damn good. W3C could learn a thing or two – Triptych Jul 22 '09 at 15:00
Worse, the linked reference does not tell which elements are valid self-closing. It shows some, e.g. <hr />, having a self-closing tag; but it does not tell what that notation indicates in the list. AFAICT it means those elements do not require an end tag in HTML, which is a different but related issue. – LarsH Mar 30 '11 at 15:49
3  
all links to w3schools should get a -1 automatically – Pacerier Jul 22 '11 at 7:25
feedback

Your Answer

 
or
required, but never shown

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