JSFiddle - React, Tailwind, and code Playground

by Pris Wiz

HTML

<div class="select">
<select>
    <option>Hello</option>
    <option>World</option>
</select>
</div>

CSS

/* All select elements on page */
.select {
    border: 2px solid #CCCCCC;
    width: 191px;
    margin: 40px;
}
select {
  position: relative;
  width: 191px;
  height: 28px; 
  border: none;
  background-color: transparent;

  padding-left:6px;
  font-size: 16px;
  font-family: 'HP Simplified Regular', verdana, helvetica, sans-serif;

}