Html
    Css
    Js

    
                        
.checkbox {
	float:left;
	margin:20px 5px;
}
.all {
	}.checkbox input {
	outline:none;
}
.checkbox label {
	display:inline-block;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	border:2px solid #3b8be6;
	position:relative;
	border-radius:3px;
	font-family:"iconfont" !important;
	font-size:16px;
	font-style:normal;
	-webkit-font-smoothing:antialiased;
}
input {
	width:45px;
	height:45px;
}
input:checked+label {
	/*当复选框选的的时候改变边框色*/
            background:#3b8be6;
}
input+label .i {
	color:#fff;
}
input:checked+label .i {
	color:red;
}
input:checked+label {
	/*当复选框选的的时候改变边框色*/
            background:#3b8be6;
}
input+label:after {
	content:'√';
	color:#fff;
}
input:checked+label:after {
	content:'√';
	color:#fff;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

checkbox 多选

input:checked+label{/*当复选框选的的时候改变边框色*/
    background: #3b8be6;
}
input:checked+label{/*当复选框选的的时候改变边框色*/
    background: #3b8be6;
}
0