| > <dl aria-label="Ability Scores"> This is incorrect: 1. <dl> has no corresponding (viz. implicit) role, but can be given the role group, list, none or presentation <https://w3c.github.io/html-aria/#el-dl>. 2. You’re only allowed to define aria-label on elements that have a compatible role, implicit or explicit <https://w3c.github.io/html-aria/#docconformance-naming>. 3. aria-label is allowed on all but a handful of roles <https://www.w3.org/TR/wai-aria-1.2/#aria-label>, which in this case knocks out presentation and none, leaving group and list. 4. group doesn’t feel right, list feels acceptable. In summary: either ditch the aria-label, or add role="list" (meaning also role="listitem" on children). —⁂— One thing the article misses is that you can have multiple <dt> in a row too, not just <dd>. The spec has a good example: https://html.spec.whatwg.org/multipage/grouping-content.html... They’re not name–value pairs, they’re name–value groups. |