What fresh hell is THIS now? - Patrick Lauke
<dd>
and <dt>
for things like questions answers, and FAQs
aria-labelledby
generally override the link text completely in screen readers, or will it be read concatenate like “The label: the link text”?
aria-label
vs hidden text? (the reason I normally use hidden text is because I’ve heard before that aria-label
is less well-supported)
role=menu
that on mobile spawns a [modal bottom sheet](https://material.io/guidelines/components/bottom-sheets.html#bottom-sheets-persistent-bottom-sheets) and on desktop just is a normal dropdown? would you wrap the role=menu
inside a true dialog on mobile (role=dialog
) and not when on desktop?
aria-labelledby
text by giving it a space-separated list of ids. For example, to get “The label: the link text” use aria-labelledby="id-of-label id-of-link"
. See: https://www.w3.org/TR/WCAG20-TECHS/ARIA7.html
role="presentation"
, does that mean the nested tbody
, tr
and td
elements remain their semantics?
table
structural elements need to have role="presentation"
applied upon?