JSFiddle - React, Tailwind, and code Playground

by holden321

HTML

<input class="styled" type="radio" name="radio" />
<input class="styled" type="radio" name="radio" />

CSS

input.styled {
    background: url(http://tutorials.mennovanslooten.nl/2-inputs/gfx/radio.gif) no-repeat 0 0;
    width:16px;
    height:16px;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    outline:none;
}
input.styled:checked {
    background-image:url(http://tutorials.mennovanslooten.nl/2-inputs/gfx/radio_on.gif);
}