Is it possible to change the background color of a radio button input in Firefox/Chrome like in IE? (Without using images)
Run this in both IE(<9) and Firefox/Chr
I know this is an old question bit it still comes up quite high if you google the question so here is my solution.
Style a element that is directly after the radio button.
HTML
CSS
input[type=radio]{
display:none;
}
input[type=radio] + label{
border: 1px solid black;
background-color: red;
border-radius: 50%;
display: block;
...
}
input[type=radio]:checked + label{
background-color: green;
}