Open knod opened 6 years ago
I'm doing some work on the focus visibility part. Either this issue can be for multiple people, or we can break it into individual issues (possibly as folks come along and are interested in moving it forward).
I'll start looking for contrast issues and knock those out.
Do labels need to have a for
attribute that'll connect them to their ui element in order to be read properly by a screen reader?
Do labels need to have a
for
attribute that'll connect them to their ui element in order to be read properly by a screen reader?
"Whenever possible, use the label element to associate text with form elements explicitly. The for attribute of the label must exactly match the id of the form control.", from the W3C Accessibility Tutorial, so yes, we absolutely should be using the for
attribute.
Awesome! Thanks @dylanesque !
Some accessibility items that need addressing. For standard keyboard interaction, see https://webaim.org/techniques/keyboard/.
:focus
styling. [Being stewarded by knod right now]for
attribute that'll connect them to their ui element in order to be read properly by a screen reader? [yes]for
attribute to labels to match their form input names. I think forManagedNumberField
we can give the same name to all the inputs. Worth a try.