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
To change the background color of a radio button input Only in IE
HTML
CSS
input[type=radio] {
width: 20px;
height: 20px;
}
/* This will make the border gray when the button is not checked. */
input[type=radio]:not(:checked)::-ms-check {
border-color: gray;
}
input[type=radio]::-ms-check {
border-color: red; /* This will make the border red when the button is checked. */
color: red; /* This will make the circle red when the button is checked. */
}