CSS改变checkbox样式

换图的方法

input[type='checkbox'] {
20px;
height: 20px;
background-color: #fff;
-webkit-appearance: none;
border: 1px solid #c9c9c9;
border-radius: 2px;
outline: none;
}

.li_ipt input[type=checkbox]:checked {
background: url("img/ok.png")no-repeat center;
}

原文地址:https://www.cnblogs.com/yyy251/p/8892083.html