css - 表单元素默认样式美化 - 单选框

单选框

HTML代码

样式

.radio input{
visibility: hidden;
}
.radio label{
position: relative;
}
.radio label:after{
content: "";/*必须设置*/
display: inline-block;
width: 20px;
height: 20px;
border: 1px solid #5dbd5d;
position: absolute;
top: 0px;
left: -32px;
border-radius: 20px;
}

.radio input:checked+label:after{
background-color: #5dbd5d;
}

效果:

或者使用背景图片

猜你喜欢

转载自www.cnblogs.com/starnoone/p/9460271.html