Last active
January 9, 2022 10:33
-
-
Save hypeJunction/22e970d91d27ae7f039aeb2ef20bf300 to your computer and use it in GitHub Desktop.
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
<label> | |
<span id="select-label">Favorite animal</span> | |
<input type="hidden" name="animal" /> | |
</label> | |
<button | |
aria-labelledby="select-label select-placeholder" | |
aria-controls="select-dropdown" | |
aria-haspopup="list" | |
aria-expanded="false" | |
> | |
<span id="select-placeholder">Select an option</span> | |
<svg aria-hidden><title>Arrow down</title></svg> | |
</button> | |
<ul id="select-dropdown" | |
aria-labelledby="select-label" | |
aria-hidden | |
role="listbox" | |
> | |
<li>Elephant</li> | |
<li>Bear</li> | |
<li>Lion</li> | |
</ul> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment