标签:
.hidden-input {
opacity: 0;
position: absolute;
z-index: -1;
}
input[type=radio]+span {
/* your style goes here */
display: inline-block;
height: 40px;
width: 100px;
border-radius: 4px;
text-align:center;
line-height:40px;
color:rgb(255,255,255);
background-color: rgb(26, 188, 156);
transition-duration: 0.25s;
}
/* active style goes here */
input[type=radio]:hover+span {
background-color: rgb(47,226,191);
}
input[type=radio]:active+span {
color: rgb(196,231,224);
background-color: rgb(22,160,133);
}
input[type=radio]:checked+span {
background-color: rgb(47,226,191);
}
标签:
原文地址:http://www.cnblogs.com/timl525/p/4791576.html