Skip to content

Instantly share code, notes, and snippets.

@luismartinezs
Created September 4, 2022 14:50
Show Gist options
  • Save luismartinezs/08860ef1670bc8197cb783ef7bb7a90b to your computer and use it in GitHub Desktop.
Save luismartinezs/08860ef1670bc8197cb783ef7bb7a90b to your computer and use it in GitHub Desktop.
Select with grouped options #a11y #html
<!-- 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