css单选框复选框美化效果代码
代码语言:html
所属分类:表单美化
代码描述:css单选框复选框美化效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
body {
font: 16px/150% microsoft yahei,pingfang sc,Tahoma,Sim sun;
}
input:disabled + label {
/*禁用的指针*/
cursor: not-allowed
}
.Radio input,
.Checkbox input {
display: none
}
.Radio label,
.Checkbox label {
padding: 0 16px 0 0;
display: inline-block;
cursor: pointer;
position: relative
}
.Radio label:before,
.Checkbox label:before {
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0