Created
August 3, 2018 18:39
-
-
Save craigcarlyle/efd6285b16184ad0c6ec74846fd4f8df to your computer and use it in GitHub Desktop.
a11y Checkbox Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Before --> | |
<input type="checkbox" name="foo" value="false"> | |
<!-- After --> | |
<input type="checkbox" name="foo" value="false" role="checkbox" aria-label="Foo Checkbox" aria-checked="false"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment