复选框样式修改

input[type='checkbox']{
    width: 20px;
    height: 20px;
    background-color: transparent ;
    -webkit-appearance:none; 
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    outline: none;
    vertical-align: middle;
}
 input[type=checkbox]:checked{
   background: url("./img/1610952617\(1\).jpg") no-repeat ;
   background-position: -3px -3px;
   color: red;

}
   <input type="checkbox" id="zs">
    <label for="zs">全选</label>
上一篇:Selenium_单选框和复选框的选中状态判定以及元素是否可用和可见判定(10)


下一篇:WPF表格复选框(全选、反选)