<!DOCTYPE html >
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=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>
如果是你自己用,就使用CSS3来控制样式,可以做到圆角、渐变背景之类的效果具体请参考css3maker.com
如果是要发布出去的,为了兼容国内的互联网环境,最好使用图片来做背景、
比如下面这个网站里面就有很多按钮的背景素材
http://www.3lian.com/psd/icon/01/13035.html
然后再CSS样式里面写上
button{
background:url(图片路径) no-repeat top center
border:none
height:40px/*这个是个你的背景图片的宽度一样*/
padding:0
width:100px/*这个是和你的背景图片的高度一样*/
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)