css实现radio选中效果
html代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>span-css模拟radio</title> <style type="text/css"> #wrap{ width: 500px; height: 500px; margin: 50px auto; } label input{ display: none; } label span{ display: inline-block; width: 20px; height: 20px; background: url(../img/radio.png) no-repeat 0 0; background-position: -55px -5px; } label input:checked+span{ background-position: -5px -5px; } </style> </head> <body> <div id="wrap"> <label> <input type="radio" value="meal" name="sex"> <span></span> 男 </label> <label> <input type="radio" value="femeal" name="sex"> <span></span> 女 </label> </div> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。