Disallows void element with content
- Rule ID:
- void-content
- Category:
- Content model
- Standards:
- HTML5
HTML void elements cannot have any content and must not have an end tag.
Rule details
Examples of incorrect code for this rule:
<img></img>
Examples of correct code for this rule:
<img>
<img/>