Skip to content

Linter Rule: Disallow self-closing tag syntax for void elements

Rule: html-no-self-closing

Description

Disallow self-closing syntax (<tag />) in HTML for all elements.

In HTML5, the trailing slash in a start tag is obsolete and has no effect. Non-void elements require explicit end tags, and void elements are self-contained without the slash.

Rationale

Self-closing syntax is an XHTML artifact. In HTML:

  • On non-void elements, it’s a parse error and produces invalid markup (<div /> is invalid).
  • On void elements, the slash is ignored and unnecessary (<input /> is equivalent to <input>).

Removing the slash ensures HTML5-compliant, cleaner markup and avoids mixing XHTML and HTML styles.

Examples

✅ Good

html
<span></span>
<div></div>
<section></section>
<custom-element></custom-element>

<img src="/logo.png" alt="Logo">
<input type="text">
<br>
<hr>

🚫 Bad

html
<span />
Use `<span></span>` instead of self-closing `<span />` for HTML compatibility. (html-no-self-closing)
<div />
Use `<div></div>` instead of self-closing `<div />` for HTML compatibility. (html-no-self-closing)
<section />
Use `<section></section>` instead of self-closing `<section />` for HTML compatibility. (html-no-self-closing)
<custom-element />
Use `<custom-element></custom-element>` instead of self-closing `<custom-element />` for HTML compatibility. (html-no-self-closing)
<img src="/logo.png" alt="Logo" />
Use `<img>` instead of self-closing `<img />` for HTML compatibility. (html-no-self-closing)
<input type="text" />
Use `<input>` instead of self-closing `<input />` for HTML compatibility. (html-no-self-closing)
<br />
Use `<br>` instead of self-closing `<br />` for HTML compatibility. (html-no-self-closing)
<hr />
Use `<hr>` instead of self-closing `<hr />` for HTML compatibility. (html-no-self-closing)

References

Released under the MIT License.