0

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
}

Fiddle here

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

enter image description here

Shrinivas Pai
  • 7,491
  • 4
  • 29
  • 56

1 Answers1

1

You can add a label around it and style that.

Here is a link with some examples

https://webdesign.tutsplus.com/articles/quick-tip-easy-css3-checkboxes-and-radio-buttons--webdesign-8953