除Chrome以外的所有浏览器都会显示以下样式
.my-checkBox {
width: 20px;
height:20px;
color:#fff;
-moz-appearance:none;
-webkit-appearance:none;
-o-appearance:none;
border: 0px inset ThreeDFace ! important;
margin: 5px;
padding: 5px;
}
这种方法在Chrome中可行吗?
最佳答案
这里有一个jquery插件..我还不知道Chrome的任何其他方法
原文链接:/css/427529.htmlhttp://archive.plugins.jquery.com/project/ui-checkbox
还要检查一下:
input.checkBox { display: none }
input.checkBox + label > span.checkBox-span { display: inline-block; color: #FFF; border: 1px solid #000; width: 30px; line-height: 30px; font-size: 24px; text-align: center }
input.checkBox:checked + label > span.checkBox-span { color: #000 }