control-has-associated-label
<button type="button">{maybeSomethingThatContainsALabel}</button>How do I resolve this error?
Case: I have a simple button that requires a label.
<button type="button">Save</button>Case: I have an icon button and I don't want visible text.
<button type="button" aria-label="Save" class="icon-save" />Case: The label for my element is already located on the page and I don't want to repeat the text in my source code.
Case: My label and input components are custom components, but I still want to require that they have an accessible text label.
Rule details
Succeed
Fail
Last updated