JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

HTML

<label for="foo">blah</label>
<select id="foo" class="foo">
  <option>alpha</option>
  <option>beta</option>
</select>

CSS

.foo {
  background: red;
  border: none;
  padding-top: 100px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 30px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;

}