JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<div class="selectbox">
<select>
<option>aaaa</option>
<option>bbbb</option>
<option>cccc</option>
</select>
</div>

CSS

.selectbox {
    width: 80%;
    background: #aee;
    overflow:hidden;
}
select {
    width: 90%;
    background: transparent;
}
option {
    background: transparent;
}