天天看點

【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;
}