2017-03-06 97 views
0

我在改变firefox中单选按钮的边框颜色时遇到了一些问题。如何更改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

我想从单选按钮删除突出左上角深色边框。是否有任何解决方案,以去除边境只有使用CSS

enter image description here

+0

你看这个问题的链接:http://stackoverflow.com/questions/13613933/styling-radio-button-not-work-in- ie-and-firefox#13614105? – Tijmen

+0

替换插入插入。 –

回答