消除radio标签的默认样式

消除radio标签的默认样式(其他的类似)


CSS样式如下

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

猜你喜欢

转载自blog.csdn.net/baidu_41604826/article/details/83009588