Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<link rel=stylesheet href="resources/customizable-select-styles.css">
<div class="customizable-select-button open" popovertarget=popover id=button>
<span class=customizable-select-selectedcontent>one</span>
</div>
<div id=popover popover=auto anchor=button class=customizable-select-popover>
<div class="customizable-select-option selected">one</div>
<div class=customizable-select-option>two</div>
</div>
<style>
body {
font-style: italic !important;
font-weight: bold !important;
font-stretch: expanded !important;
font-size: 13px !important;
font-family: monospace !important;
}
</style>
<script>
document.getElementById('popover').showPopover();
</script>