欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

自定义input type=”radio”样式

程序员文章站 2022-07-13 16:51:45
...

html:

<input type="radio" name="sex" value="man" id="man" checked>
        <label for="man">男</label>
        <input type="radio" name="sex" value="female" id="female">
        <label for="female">女</label>

css:

label{
  position: relative;
  top: 14px;
  font-size: 16px;
  color: #B7BABB;
  line-height: 16px;
}
input[type="radio"]{
  display: none;
}
input[type='radio']+label:before{
  margin-top: -2px;
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 100%;
  vertical-align: middle;
  border: 1px solid #E4E4E4;
  background: #FFFFFF;
}

input[type='radio']:checked+label:before{
  background-image: url('../images/s_true.png');
  background-position: center center;
  /*background: #777777;*/
}

结果:

自定义input type=”radio”样式

相关标签: 自定义radio样式