2017-03-06 94 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

替換插入插入。 –

回答