美文网首页
input checkbox 修改选中背景色

input checkbox 修改选中背景色

作者: alipy_258 | 来源:发表于2023-02-14 16:24 被阅读0次
image.png
image.png

具体代码如下:

<input type="checkbox" v-model="checked" />

// css
input[type='checkbox']:checked:after
  content '\2713'
  background-color  #FF7D41
  position absolute
  font-size 12px
  font-weight 600
  // border none
  color #fff
  width 13px
  height 13px
  border-radius 2px

ps: 主要作用在于content: '\2713'

相关文章

网友评论

      本文标题:input checkbox 修改选中背景色

      本文链接:https://www.haomeiwen.com/subject/gpvekdtx.html