【发布时间】:2014-06-03 18:15:57
【问题描述】:
是否可以设置选定单选按钮的中心圆的样式,至少在 webkit 浏览器中...?
我现在拥有的:
我想要的:
我可以如下改变背景颜色、阴影等
#searchPopup input[type="radio"]{
-webkit-appearance:none;
box-shadow: inset 1px 1px 1px #000000;
background:#fff;
}
#searchPopup input[type="radio"]:checked{
-webkit-appearance:radio;
box-shadow: none;
background:rgb(252,252,252);
}
有什么想法吗?
【问题讨论】:
标签: html css input webkit radio-button