Are void elements and empty elements the same?

The term “empty element” comes from SGML, on which HTML standards prior to HTML5 were based, and where the EMPTY keyword is used to represent elements with an empty content model. Here’s what the HTML 4 spec says:

The allowed content for an element is called its content model. Element types that are designed to have no content are called empty elements. The content model for such element types is declared using the keyword “EMPTY”.

With an example declaration for the img element:

This example illustrates the declaration of an empty element type:

<!ELEMENT IMG - O EMPTY>
  • The element type being declared is IMG.
  • The hyphen and the following “O” indicate that the end tag can be omitted, but together with the content model “EMPTY”, this is strengthened to the rule that the end tag must be omitted.
  • The “EMPTY” keyword means that instances of this type must not have content.

XML defines an “empty element” quite differently:

[Definition: An element with no content is said to be empty.]

The difference here is that XML does not say that an “empty element” is “an element whose content model is empty”. Instead, it simply says that an “empty element” is one that has no content. This is regardless of whether or not the document type or XML schema defines that specific element to have no content by necessity; XML itself by nature places no such restrictions.

An additional term, “empty-element tag”, is used to describe the shortcut syntax /> commonly used to indicate empty elements (again, regardless of whether or not they are empty by definition). This is also commonly referred to as “self-closing” syntax.

The term “void element” is new to HTML5. It has the same definition as the pre-HTML5 definition of “empty element”: namely, an element that only has a start tag, no end tag, and cannot have any content whatsoever. Although the W3C HTML5 spec does not reference the term “empty element”, the term “empty-element tag” as described in XML is used in a related document:

In the HTML syntax, void elements are elements that always are empty and never have an end tag. All elements listed as void in the HTML specification or in an extension spec, MUST in polyglot markup have the syntactic form of an XML empty-element tag (<foo/>). Other elements MUST NOT use the XML empty-element tag syntax.

It seems that modern HTML standards now prefer the XML definition and eschew the former definition. This seems fitting, because modern HTML is no longer an SGML application, but a markup language in its own right. (It’s not XML either, but that’s where polyglot markup comes into play.)

So, to summarize:

  • An empty element is one that has no content, regardless of whether it is allowed to have content in the first place.
  • A void element is one that cannot have any content.

Additionally, it can be said that all void elements are empty elements by definition, but an empty element does not necessarily represent a void element.

In answer to your questions:

  1. If these are the same thing, should they be referred to as empty elements and never as void elements? In that case, is the W3 spec outdated and not to be trusted? Or should the W3 spec take precedence, even if it is outdated?

    Elements such as area, br, col and img are more accurately referred to as void elements, as in HTML5. They are considered empty as well, but only because they can’t be “non-empty”.

    I have no idea why MDN has an article that says “[‘Void elements’] is an improper name and should be avoided.” when it uses the name in most of its HTML references anyway. I see no reason not to trust the official specifications.

  2. If they are not the same thing, is <col span="2" /> valid syntax or should it be <col span="2"> (without the slash) because the end tag is forbidden? I may have the wrong idea of “end tag” but I’ve always thought of the /> (as in <br /> and <img />) to be an end tag of sorts.

    <col span="2" /> is only valid syntax because HTML5 recognizes it as a popular way of marking up void elements thanks to XHTML, and to disallow it would needlessly break validation compatibility with many XHTML documents that would otherwise validate as HTML5. HTML5 itself defines /> to be meaningless (with one specific exception that’s not really relevant here), so in actuality <col span="2" /> in HTML5 simply represents a col with just a start tag and no end tag, and is therefore identical to <col span="2">, albeit XML-friendly.

Leave a Comment