JSFiddle - React, Tailwind, and code Playground

HTML

<div class="select_style">
    <select>
        <option>Tell Me I'm pretty</option>
    </select>
</div>

CSS

.select_style {
    overflow:hidden;
}
.select_style select {
    -webkit-appearance: none;
    appearance:none;
    width:120%;
    background:none;
    background:transparent;
    border:none;
    outline:none;
    padding:7px 10px;
}