checkbox样式修改
Posted wxnboke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkbox样式修改相关的知识,希望对你有一定的参考价值。
input[type="checkbox"] {
margin-top: 5px;
width: 14px;
height: 14px;
display: inline-block;
text-align: center;
vertical-align: middle;
line-height: 12px;
position: relative;
margin-right: 6px !important;
}
input[type="checkbox"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
border: 1px solid #057afe;
}
input[type="checkbox"]:checked::before {
content: "2713";
background-color: #fff;
position: absolute;
top: 0;
left: 0;
width: 100%;
border: 1px solid #057afe;
color: #057afe;
font-size: 14px;
font-weight: bold;
text-indent:0px;
}
以上是关于checkbox样式修改的主要内容,如果未能解决你的问题,请参考以下文章