Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The W3C validator doesn't like self-closing tags (those that end with "\>"). Are they still valid in HTML5?

Some examples would be:

<br \>
<img src="" \>
<input type="text" name="username" \>
share|improve this question
2  
@Sk8erPeter, the syntactically valid question is better because it makes the answers make sense. If you change the question then you invalidate most of the answers, which is wrong. Generally speaking do not edit code. See meta.stackoverflow.com/questions/88627/… and meta.stackoverflow.com/questions/101583/…, especially when it is wrong. Comment and ask whether the OP has it incorrect. – Ben Dec 26 '12 at 16:48
1  
Meant to be invalid not valid. – Ben Dec 26 '12 at 16:56
2  
@Ben: oh, sorry, I think you're right. In this case, I misunderstood the original question, I thought the OP wants to know whether self-closing tags are valid at all in HTML5. But this means he just made typos in his code, or he didn't know how to appropriately write self-closing tags, which makes sense that W3C validator marked his code as invalid. – Sk8erPeter Dec 26 '12 at 17:16
7  
@cdeszaq, Is there any reason you keep using \> instead of />? This post is much clearer when the initial question doesn't contain irrelevant errors. meta – Brad Koch Feb 1 at 16:45
1  
To save time for future readers: yes, the syntax in the question is incorrect, and no, you should not change it. The OP has explicitly and justifiably explained why. Since it gave rise to the validation errors that prompted this question, the syntax should not be corrected. – Jordan Gray Apr 29 at 14:57

7 Answers

up vote 259 down vote accepted

Not exactly.

If we get the syntax right (it is / not \) then:

  • In HTML 4, <foo / means <foo> (which leads to <br /> meaning <br>&gt; and <title/hello/ meaning <title>hello</title>). Browsers did a very poor job of supporting this and the spec advises authors to avoid the syntax.

  • In XHTML, <foo /> means <foo></foo>, but since this only works in XML parsing mode and most documents are served as text/html there are compatibility guidelines to follow.

  • In HTML 5, <foo /> means <foo>. The slash is just syntactic sugar for people who are addicted to XML. The syntax is valid, but it is not a "self-closing tag". The distinction is important since (in the HTML syntax at least) <div /> means <div> in HTML 5 and not <div></div> as it does in XHTML.

share|improve this answer
3  
There seems to be some pretty significant encoding/escaping issues in this post that really need addressed for clarity. – Chris Marisic Aug 23 '11 at 20:30
3  
Yes. <br>&gt; and <br>> mean the same thing. I used the former for clarity as &gt; can't be mistaken for anything other then a greater than sign as data. – Quentin Aug 24 '11 at 12:37
1  
@mb21 — No, not in HTML 4. – Quentin Feb 25 at 12:27
5  
@mb21 — No, the > did not go missing. The <foo /> case for HTML 4 is described in the parenthesised sentence in that section. – Quentin Feb 25 at 13:07
2  
This is technically correct for HTML5 but it should be noted (as it is in the reference) that foreign elements DO get marked as self-closing. – Derek Litz Apr 3 at 16:49
show 7 more comments

As Nikita Skvortsov pointed out, a self-closing div will not validate. This is because a div is a normal element, not a void element. According to the spec, tags that cannot have any contents (known as void elements) can be self-closing*. This includes the following tags:

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

The "/" is completely optional on the above tags, however, so <img/> is not different from <img>, but <img></img> is invalid.

*Note: foreign elements can also be self-closing, but I don't think that's in scope for this answer.

share|improve this answer
4  
+1 for the link to the spec. – Stefan Jun 29 '12 at 10:30
+1 This is a simple and clear answer. – Randolf R-F Sep 26 '12 at 17:56

In practice, using self-closing tags in HTML should work just like you'd expect. But if you are concerned about writing valid HTML5, your should understand how the use of such tags behaves within the two different two syntax forms you can use. HTML5 defines both an HTML syntax and an XHTML syntax, which are similar but not identical. Which one is used depends on the media type sent by the web server.

More than likely, your pages are being served as text/html, which follows the more lenient HTML syntax. In these cases, HTML5 allows certain start tags to have an optional / before it's terminating >. In these cases, the / is optional and ignored, so <hr> and <hr /> are identical. The HTML spec calls these "void elements", and gives a list of valid ones. Strictly speaking, the optional / is only valid within the start tags of these void elements; for example, <br /> and <hr /> are valid HTML5, but <p /> is not.

The HTML5 spec makes a clear distinction between what is correct for HTML authors and for web browser developers, with the second group being required to accept all kinds of invalid "legacy" syntax. In this case, it means that HTML5-compliant browsers will accept illegal self-closed tags, like <p />, and render them as you probably expect. But for an author, that page would not be valid HTML5. (More importantly, the DOM tree you get from using this kind of illegal syntax can be seriously screwed up; self-closed <span /> tags, for example, tend to mess things up a lot).

(In the unusual case that your server knows how to send XHTML files as an XML MIME type, the page needs to conform to the XHTML DTD and XML syntax. That means self-closing tags are required for those elements defined as such.)

share|improve this answer
<p /> will be treated as an opening tag, not a self-closed tag. That means the entire remainder of the document will be treated as being within the P element. That is not what I "probably expect", and will produce a serious mess on any non-trivial page. – rgove 23 hours ago

They are valid, but are interpreted differently. Look at this:

<!DOCTYPE html>
<html>
<head><title>Title</title></head>
<body>
  <div>
    <p>
      <div/>
    </p>
  </div>
</body>
</html>

While it is perfectly valid HTML4, it is invalid in HTML5. Validation complains about <div/>:

Self-closing syntax (/>) used on a non-void HTML element. Ignoring the slash and treating as a start tag.

If innermost self-closed div is treated as start tag, it breaks whole structure, so be careful with self-closing tags.

share|improve this answer

You need to use forward slashes for the self-closing tags. My website uses self-closing tags in HTML5 content and the validators don't complain.

share|improve this answer

Yes, they are valid as this:

<!doctype html> 
<html> 
    <head> 
    <meta charset="utf-8"/> 
    <title></title></head> 
    <body> 
    <hr /> 
    </body> 
</html> 

Validates fine.

And as pointed out, use /> not \>.

share|improve this answer
that validator is experimental – UpTheCreek Oct 12 '11 at 17:15
This doesn't validate anymore. – Feral Oink Nov 18 '11 at 10:12
2  
Thats because the domain is gone. By direct input it's still valid. – meder Nov 18 '11 at 15:05
-1 as this is misleading: "Yes, they are valid" doesn't cover the fact that they are invalid (structurally) for certain types of element - as pointed out in other replies. – Nathan Apr 18 at 13:28

Self-closing tags are valid in HTML5, but not required.

<br> and <br /> are both fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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