For example: <div/> instead of <div></div>.
I did this and apparently the HTML5 validator passed this as valid. I was wondering it this is actually true?
PS: I'm serving page as application/xhtml+xml
|
For example: PS: I'm serving page as application/xhtml+xml |
||||
|
|
This is not valid HTML 5 (HTML does not allow shorttags, the equivalent HTML construct is a single opening The reason why you might see this pass through a validator just fine is because of what you stated:
Which means that you tell the validator that it must treat your markup as XML. In other words your page is not HTML 5 at all. |
|||||||
|
|
That syntax is allowed for a specific subset of HTML5 elements, known as
Void elements:
They're not allowed for any others, including (I'd originally answered that yes, this is valid HTML5, since it's such a common construct in XML. Rex M, and a close reading of the spec, tells me that I'm wrong) |
||||
|
|
|
No, technically using a self-closing |
|||
|
|