JSFiddle - React, Tailwind, and code Playground
by holden321
HTML
<input type="radio" name="radio" checked/>
<input type="radio" name="radio" />
<input type="radio" name="radio" />
CSS
input[type="radio"] {
position:relative;
}
input[type="radio"]:after {
position:absolute;
content:"";
top:0;
left:0;
width:16px;
height:16px;
background: url(http://tutorials.mennovanslooten.nl/2-inputs/gfx/radio.gif) no-repeat 0 0;
}
input[type="radio"]:checked:after {
background-image:url(http://tutorials.mennovanslooten.nl/2-inputs/gfx/radio_on.gif);
}