JSFiddle - React, Tailwind, and code Playground
HTML
<select>
<option></option>
</select>
<input type="search"/>
<input checked type="radio"/>
<input checked type="checkbox"/>
CSS
select, select option,
input[type=search],
input[type=radio],
input[type=checkbox]{
appearance:none;
-o-appearance:none;
-ie-appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
border: #888 solid 1px;
background: #ccc;
}