demo图:
上代码:
<input type="checkbox">记住我</label> //未选中样式 input[type="checkbox"] { -webkit-appearance: none; /*清除复选框默认样式*/ background: url(./images/wexuanz.png); /*复选框的自定义背景图,尺寸自己设定好,不然显示不全*/ height: 14px; /*高度*/ vertical-align: middle; 14px; } //选中样式 input[type="checkbox"]:checked { background: url(./images/xuanzhong.png); }