改变checkbox默认样式(选中样式替换图片)

html:

   

 

css:

 input[type='checkbox']{
    width: 20px;
    height: 20px;
    background-color: #fff;
    appearance:none;
    -webkit-appearance:none;
    -o-appearance:none;
    -moz-appearance:none;
    border: 1px solid #FFAD01;
    border-radius: 2px;
    outline: none;
}
 input[type=checkbox]:checked{
   background: url("/Public/images/icon/yellow_checkbox_selected.png")no-repeat center;
}

 input[type=checkbox]:focus{
    outline: none;
}

你可能感兴趣的:(html+css)