I am facing some issue in changing the border color from radio button in firefox.
HTML
<input type="radio" name="myRadio" value="1" /> 1 <br />
<input type="radio" name="myRadio" value="2" /> 2 <br />
<input type="radio" name="myRadio" value="3" /> 3 <br />
CSS
input[type='radio'] {
-moz-appearance: none;
box-shadow:0px 0px 5px 0px #ccc insert;
width:20px;
height:20px
}
I wanted to remove the highlighted top left dark border from the radio button. Is there any solution to remove that border only using CSS