Validate required element order
- Rule ID:
- element-permitted-order
- Category:
- Content model
- Standards:
- HTML5
Some elements has a specific order the children must use.
Rule details
Examples of incorrect code for this rule:
<!-- table caption must be used before thead -->
<table>
<thead></thead>
<caption></caption>
</div>
Examples of correct code for this rule:
<table>
<caption></caption>
<thead></thead>
</table>