JSFiddle - React, Tailwind, and code Playground

by Artūrs Jansons

HTML

<select>
    <option></option>
</select>
<input/>
<input type="search"/>
<input checked type="radio"/>
<input checked type="checkbox"/>
<input type="number"/>
<input type="email"/>

CSS

select, select option,
input,
input[type=search],
input[type=radio],
input[type=checkbox],
input[type=email],
input[type=number]{
    appearance:none;
    -o-appearance:none;
    -ie-appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    border: 0;
    background: #ccc;
    width: 2em;
    height: 2em;
    margin:0;
    padding:0;
    top:0;
    left:0;
    right:0;
    bottom:0;
    position:relative;
    display:block;
    outline: gray solid 1px;
}