这个效果怎么通过css实现?

自己做出来的样子

希望的得到的效果图样

如何通过css用代码实现,谢谢!

阅读 2.7k
3 个回答

css:

.remem {
  display: none;
}
.remem + label {
  background:  url(../images/btn11.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  position: relative;
  float: left;
  margin-top: 3px;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}
.menlogin label{
  margin-left: 68px;
}
.remem:checked + label:after {
  content: ' ';
  width: 14px;
  height: 14px;
  position: absolute;
  background: url(../images/btn11-1.png) no-repeat;
  background-size: 100%;
}

html:

<input type="checkbox" name="" value="" checked="checked" class="remem" id="wtsx-radio-2">
 <label for="wtsx-radio-2"></label>
 <span>记住密码</span>
 

差不多就这样吧,我自己的笔记。

修改原生label样式,用CSS选择器:checked修改

我记得有个bootstrap的icheck 项目里也在用 挺简单 也挺坑的 用完源生的input直接废了 要用hasClass判断选中了没有。。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题