JSFiddle - React, Tailwind, and code Playground
HTML
<div class="styled-select">
<select>
<option>Here is the first option</option>
<option>The second option</option>
</select>
</div>
CSS
.styled-select select {
background: transparent;
width: 268px;
padding: 5px;
font-size: 16px;
border: 0;
border-radius: 0;
height: 34px;
-webkit-appearance: none;
-moz-appearance:none;
appearance: none;
}
.styled-select {
width: 271px;
height: 43px;
overflow: hidden;
background: url(http://linenwoods.com/images/offline.png) no-repeat;
border: 0;
}