10
我給出了單選按鈕的bg圖像。它使用chrome而不是mozilla。單選按鈕背景圖片
這裏是我的代碼
<div class="fieldlist">
<label for="shipadd2">
<input type="radio" id="shipadd2" name="address" />
<div class="compacttext"> Lorem ipsum </div>
</label>
</div>
CSS是
.fieldlist input[type="radio"] {
float: right;
-webkit-appearance: none;
border: none;
width: 25px;
height: 25px;
background: url(images/radio.png) left center no-repeat;
background-size: 20px;
}
.fieldlist input[type="radio"]:checked {
background: url(images/radio_checked.png) left center no-repeat;
}
請評價烏爾問題和它們標記爲答案,如果它幫助你在你的問題。 – uday
你可以在http://jsfiddle.net中創建一個例子,以便更好地理解 – sandeep