首页 > 代码库 > HTML单选按钮样式更换
HTML单选按钮样式更换
<!DOCTYPE html ><html lang="en"><head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>更换单选按钮显示样式</title> <style> input[type=‘radio‘].radio {opacity:0; display:inline-block; height:20px; } label.radio {background:url(imgs/radio_check.png) no-repeat; height:20px; padding-left:25px;} input[type=‘radio‘].radio:checked + .radio {background:url(imgs/radio_checked.png) no-repeat;} </style></head><body> <input type="radio" name="gender" id="x" value="X"><label for="x">我要保密</label><br> <input type="radio" name="gender" id="y" value="M"><label for="y">我是帅哥</label><br> <input type="radio" name="gender" id="z" value="F"><label for="z">我是美女</label><br> <input type="radio" name="sex" id="a" value="X" class="radio"><label for="a" class="radio">我要保密</label><br> <input type="radio" name="sex" id="b" value="M" class="radio"><label for="b" class="radio" >我是帅哥</label><br> <input type="radio" name="sex" id="c" value="F" class="radio"><label for="c" class="radio" >我是美女</label><br></body></html>
HTML单选按钮样式更换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。