Created
October 12, 2019 05:10
-
-
Save takahirohonda/f428165e870c4cd97ff0d033f36a5b72 to your computer and use it in GitHub Desktop.
accessibility-form-tips-4-aria-required.html
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
<!-- aria-checked is not required --> | |
<input type="radio" | |
class="radio-input" | |
id="adelaide" | |
name="venue" | |
value="adelaide" | |
aria-checked="false" /> | |
<!-- remove aria-checked --> | |
<input type="radio" | |
class="radio-input" | |
id="adelaide" | |
name="venue" | |
value="adelaide" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment