Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In HTML5, do we still need the end slash like in XHTML?

<img src="some_image.png" />

validator.w3.org didn't complain if I dropped it, not even a warning. But some online documents seem to indicate the end slash is still required for tags such as img, link, meta, br, etc.

share|improve this question
Still? Did any version of HTML require closing all tags? – Gabe Sep 9 '11 at 19:11
2  
@Gabe XHTML 1.0 Strict needs it. I mean, web pages will load fine usually, but it's considered invalid. – CaptSaltyJack Sep 9 '11 at 19:15
Yes, but that X isn't just there because X is cool, there's quite a gap between HTML and XHTML. – delnan Sep 9 '11 at 19:18
@Capt: You are correct, but that should only be an issue if your doctype indicates XHTML. – Gabe Sep 9 '11 at 20:11

3 Answers

up vote 13 down vote accepted

img tags are Void Elements so they do not need an end tag.

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

...

Void elements only have a start tag; end tags must not be specified for void elements.

W3C | WHATWG

That being said it's not strict parsing in HTML5 so it won't do any major harm.

share|improve this answer
Just curious, because my editor (Komodo) indents if I type '<img src="x">' and hit enter. It expects the trailing slash in HTML5 mode and I wanted to make sure this was correct behavior. – CaptSaltyJack Sep 9 '11 at 19:14
1  
This is HTML, not XHTML, so it's not required. Fortunately, parsers still understand the XHTML-style end-slashes just fine, so there's no harm in leaving it there. Means easier converting backwards to XHTML, if necessary for whatever reason. – Nightfirecat Sep 9 '11 at 19:19

Nope. HTML has never required it, even before HTML5. If you plan to use XHTML with HTML features, then yes, it is necessary.

share|improve this answer
XHTML is not the same as HTML5, correct? If my DOCTYPE is just "html", I don't need the trailing slashes, correct? – CaptSaltyJack Sep 9 '11 at 19:12
@CaptSaltyJack: Correct. – rynah Sep 9 '11 at 19:12
@CaptSaltyJack - HTML5 covers both ordinary HTML and XHTML. XHTML requires all elements to be closed, but for browsers, the doctype has no effect on the situation. For a fuller explanation, see stackoverflow.com/questions/2662508/… – Alohci Sep 9 '11 at 20:56

According to Start Tags they are optional.

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.