Created
September 4, 2022 14:50
-
-
Save luismartinezs/08860ef1670bc8197cb783ef7bb7a90b to your computer and use it in GitHub Desktop.
Select with grouped options #a11y #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
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup --> | |
<label for="dino-select">Choose a dinosaur:</label> | |
<select id="dino-select"> | |
<optgroup label="Theropods"> | |
<option>Tyrannosaurus</option> | |
<option>Velociraptor</option> | |
<option>Deinonychus</option> | |
</optgroup> | |
<optgroup label="Sauropods"> | |
<option>Diplodocus</option> | |
<option>Saltasaurus</option> | |
<option>Apatosaurus</option> | |
</optgroup> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment