首页 > Web开发 > 详细

css美化checkbox radio样式

时间:2016-08-04 17:30:45      阅读:238      评论:0      收藏:0      [点我收藏+]
/*check,radio*/
input.check_txt[type=‘checkbox‘]{
  display: none;
}

input.check_txt[type=‘checkbox‘] + label{
  display: block;
  float: left;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border:2px solid #cecece;
  border-radius: 3px;  cursor:pointer;
}

input.check_txt[type=‘checkbox‘]:checked + label {
    background: #f0f0f0 url(../images/check.png) no-repeat center center;
     background-size:80%;

}

html:

<p class="xd-clause-wrap">
        <input type="checkbox" name="" id="clause" value="">
        <label for="clause"></label>&nbsp;&nbsp;我已阅读并同意<a href="javascript:;">《借款服务条款》</a>
    </p>

 

css美化checkbox radio样式

原文:http://www.cnblogs.com/juexin/p/5737436.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!