样式代码:
input[type="checkbox"] {
border: 1px solid #a9afb4;
text-align: center;
padding: 0;
margin: 0;
width: 16px;
height: 16px;
background: white;
-webkit-appearance: none;
-webkit-border-radius: 2px;
border-radius: 2px;
vertical-align: middle;
color: #fff;
transition: all 0.1s linear;
cursor: pointer;
}
input[type="checkbox"]:before {
content: "✔";
font-size: 8px;
}
input[type="checkbox"]:checked {
background: #0AA89E;
border: none;
color: #fff;
}
如果里面的勾号不用特殊字符打上去的话,可以用什么样式实现,请大神们帮帮忙看看??
content: '\2714'
;你可以参考HTML CSS 特殊字符表,我写的几个复选框链接描述,当然你要正规点的还是推荐用字体图标库来搞