Complete tags (complete-tags)

Axe-core deprecated + obsolete

Every opening tag (e.g., <div>) has a corresponding closing tag (e.g., </div>).

HTML auto-corrects this issue (at least to the extent it can)

Unclosed div:

This paragraph is inside div, which is not closed:


This is a paragraph


Original source code of above element is:

<div>
<p>
This is a paragraph </p>

You can view full original source code by pressing Ctrl + U

Note: HTML automatically corrects this issue. Possible to automatically test. Can be detected by analyzing tag structure for proper opening and closing pairs.

axe detected: none  |  QualWeb detected: none