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.

Step 6 of 8.1.2.1 Start tags of the HTML5 spec says that void elements may have a single / character. I think this is so it's easier to migrate sites that are XHTML over to HTML5.

What's the best practice?

E.g., if I'm making a website with HTML5 (<!DOCTYPE html>), which should I do?

  1. without the slash

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    
  2. with the slash

    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    

If both render correctly on all browsers, then I'm assuming (1) without the slash is the way to go since it's more HTML5.

share|improve this question
3  
Just as a reminder... in HTML5 you can replace that big meta declaration for this: <meta charset=utf-8> (it's a shorthand just for this purpose and it's a valid equivalent). – Camilo Martin Aug 20 '12 at 3:00

3 Answers

up vote 8 down vote accepted

There is no consensus on best practice, and according to the author of the spec, Ian Hickson, it does not matter.

share|improve this answer
Do you have a link to something indicating this stance by Ian Hickson? – commadelimited Jan 30 at 21:32
Thank you Gaurav – commadelimited Jan 31 at 15:34
They are both valid (for HTML, not XHTML), and adding the / is just adding more characters to download. – D-Money Feb 25 at 23:34

Mostly it depends if you want to go the XML route or not. Both should render correctly, as the HTML5 spec does not require self-closing tags - their only reason is that the document is then valid XML.

The easier way is to probably just write then without the self-closing "/", unless there's a specific need to get the markup parsed as XML - in that case you also need

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
share|improve this answer
Just to clarify. By "in that case," you mean for XML. – MattDiPasquale Jan 16 '11 at 3:25
Yes. XML requires a namespace and that gives the HTML document an XML namespace. – Shadikka Jan 16 '11 at 11:49

Closing the tag with a slash is a more explicit way of denoting that it is not meant to have a closing tag.

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.