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" \>
|
The W3C validator doesn't like self-closing tags (those that end with " Some examples would be:
|
||||
|
Not exactly. If we get the syntax right (it is
|
|||||||||||||||||||||
|
|
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:
The "/" is completely optional on the above tags, however, so *Note: foreign elements can also be self-closing, but I don't think that's in scope for this answer. |
|||||||
|
|
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 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 (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.) |
|||
|
|
They are valid, but are interpreted differently. Look at this:
While it is perfectly valid HTML4, it is invalid in HTML5.
Validation complains about
If innermost self-closed div is treated as start tag, it breaks whole structure, so be careful with self-closing tags. |
|||
|
|
|
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. |
|||
|
|
|
Yes, they are valid as this:
Validates fine. And as pointed out, use |
|||||||||||
|
|
Self-closing tags are valid in HTML5, but not required.
|
|||
|
|
\>instead of/>? This post is much clearer when the initial question doesn't contain irrelevant errors. meta – Brad Koch Feb 1 at 16:45