input[type=checkBox] { zoom: 1.5; }
input[type="checkBox"]{ width: 30px; /*Desired width*/ height: 30px; /*Desired height*/ }
编辑:
您必须添加额外的规则,如下所示:
input[type="checkBox"]{ width: 30px; /*Desired width*/ height: 30px; /*Desired height*/ cursor: pointer; -webkit-appearance: none; appearance: none; }
检查这个小提琴http://jsfiddle.net/p36tqqyq/1/