Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<link rel=stylesheet href="resources/customizable-select-styles.css">
<style>
.customizable-select-selectedoption {
color: green;
}
</style>
<div class=customizable-select-button popovertarget=popover id=button>
<span class=customizable-select-selectedoption>button</span>
</div>
<div id=popover popover=auto anchor=button class=customizable-select-popover>
<div tabindex=0 class="customizable-select-option selected">one</div>
<div class=customizable-select-option>two</div>
</div>
<script>
document.getElementById('popover').showPopover();
</script>