关于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;
width: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;
}
posted @ 2017-05-25 14:03  shenq2014  阅读(218)  评论(0编辑  收藏  举报