Skip to content

Instantly share code, notes, and snippets.

@ThomasRettig
Created March 4, 2022 11:54
Show Gist options
  • Save ThomasRettig/f8c80554dea2e20e3a34fb4763be5c89 to your computer and use it in GitHub Desktop.
Save ThomasRettig/f8c80554dea2e20e3a34fb4763be5c89 to your computer and use it in GitHub Desktop.
<selectmenu> syntax
<style>
.my-select-menu::part(button) {
color: white;
background-color: #f00;
padding: 5px;
border-radius: 5px;
}
.my-select-menu::part(listbox) {
padding: 10px;
margin-top: 5px;
border: 1px solid red;
border-radius: 5px;
}
</style>
<selectmenu class="my-select-menu">
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</selectmenu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment