关于checkbox与文字没法对齐

关于checkbox,radio与文字没法对齐
input[type=checkbox]{vertical-align:middle; margin-top:-2px; margin-bottom:1px;}
input[type=radio]{vertical-align:middle; margin-top:-2px; margin-bottom:1px;}

改变checkbox,radio的勾颜色
input[type="checkbox"]{
-webkit-appearance:none;
13px;
height:13px;
background:url(../images/input.png) no-repeat -22px 0;
}
input[type="checkbox"]:focus{
outline:none;
}
input[type="checkbox"]:checked{
background:url(../images/input.png) no-repeat 0px 0;
}
原文地址:https://www.cnblogs.com/shenq/p/6903429.html