使复选框更大

use*_*939 -1 html css

我试图让复选框更大.常规尺寸太小

小智 5

尝试CSS'转换'

input[type=checkbox] {
  -ms-transform: scale(2); 
  -moz-transform: scale(2); 
  -webkit-transform: scale(2); 
  -o-transform: scale(2); 
  transform: scale(2); }
Run Code Online (Sandbox Code Playgroud)

但它不适用于IE8. http://www.w3schools.com/cssref/css3_pr_transform.asp