天天看点

【CSS】css清除单选按钮/多选按钮的默认样式

/*多选按钮的样式把radio换成checkbox*/
label input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	margin: 0;
	vertical-align: text-bottom;
	margin-right: 0.1rem;
}
label input[type="radio"]:after {
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	border: 2px solid #bfbfbf;
}

label input[type="radio"]:checked:after {
	background: #F67D07;
	border: 2px solid #fff;
}