我试图制作自己风格的单选按钮。在 Chrome 中一切正常,但在 IE 和 Firefox 中仍然存在一些显示错误。
这是代码:
HTML
<input type="radio" id ="light" name="choice" value="none""><label for="light">Light me</label>
CSS
input[type="radio"] {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background:url('http://refundfx.com.au/uploads/image/checkbox_empty.png') center center no-repeat;
background-size: 2em;
width: 2em;
height: 2em;
cursor: pointer;
vertical-align: middle;
}
怎么了?
非常感谢您的回答。