JSFiddle - React, Tailwind, and code Playground
by halirgb
HTML
<div class="tve-custom-select">
<label for="">Test</label>
<select>
<option>Here is the first option</option>
<option>The second option</option>
<option>The third option</option>
</select>
</div>
CSS
/* Blup */
.tve-custom-select {
display: inline-block;
position: relative;
}
.tve-custom-select:after {
background: #f5f5f5;
border: 1px solid #cccccc;
bottom: 0;
color: #333333;
content: "\25BC";
font-size: 12px;
height: 26px;
line-height: 27px;
padding: 0 7px;
pointer-events: none;
position: absolute;
right: 0;
top: 0;
}
.tve-custom-select select {
background: #fff;
border: 1px solid #cccccc;
display: inline-block;
font: inherit;
line-height: 1.2;
margin: 0;
outline: none;
padding: 3px 20px 3px 5px;
}