I recently modified a radio button to resemble a checkbox using the following CSS code:
input[name="radio1"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
-ms-appearance: checkbox; /* not currently supported */
-o-appearance: checkbox; /* not currently supported */
}
However, upon visiting the page in Chrome, the checkboxes are suddenly filled in with a blue color like so:
Any suggestions on how to resolve this issue?