JSFiddle - React, Tailwind, and code Playground

by Jaganathan

HTML

<div class="customselect">
    <select>
    <option>2000</option>
    <option>2001</option>
    <option>2002</option>
    </select>
</div>

CSS

.customselect {
    width: 80px;
    overflow: hidden;
    border: 1px
}

.customselect select {
   width: 100px;
   -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
}