HTML Checking for Large Sites
Rocket Validator automatically scans your sites for accessibility issues using the W3C Validator,
hosted on our own servers and integrated into our web crawler.
Element “div” not allowed as child of element “ul” in this context. (Suppressing further errors from this subtree.)
A <div>
tag has been found as a direct child of an <ul>
tag, and this is not allowed. For example, <ul><div><li>item</li></div></ul>
is not valid, but <ul><li><div>item</div></li></ul>
is valid as the direct child of <ul>
is <li>
.
Related W3C validator issues
- Element “div” is missing one or more of the following attributes: “role”.
- Element “X” not allowed as child of element “Y” in this context. (Suppressing further errors from this subtree.)
- End tag “a” violates nesting rules.
- Start tag “a” seen but an element of the same type was already open.
- The element “label” must not appear as a descendant of the “a” element.
- The element “label” must not appear as a descendant of the “label” element.
- The element “table” must not appear as a descendant of the “caption” element.