checkbox样式改写

class="checkbox font_s">
.checkbox input[type="checkbox"] { -webkit-appearance: none; /*清除复选框默认样式*/ background: #fff url("../images/unchecked.png") no-repeat; /*复选框的背景图,就是上图*/ width: 15px; height: 15px; vertical-align: middle; outline: none; /*去掉自带的边框*/ } .checkbox input[type="checkbox"]:checked { -webkit-appearance: none; /*清除复选框默认样式*/ background: url("../images/checked.png") no-repeat; width: 15px; height: 15px; vertical-align: middle; outline: none; }

你可能感兴趣的:(CSS)