修改input复选框样式

Posted duanzhenzhen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改input复选框样式相关的知识,希望对你有一定的参考价值。

效果:

技术图片

 

 代码:

input[type=‘checkbox‘] {
      cursor: pointer;
      position: relative;
      width: 18px;
      height: 18px;
      font-size: 16px;
      visibility: hidden;
    }
   input[type=‘checkbox‘]::after {
      position: absolute;
      top: 0;
      background-color: #fff;
      color: #fff;
      border: 1px solid #b1b1b1;
      width: 18px;
      height: 18px;
      display: inline-block;
      visibility: visible;
      padding-left: 0px;
      text-align: center;
      content: ‘ ‘;
      border-radius: 50%;
      box-sizing: border-box;
    }

    input[type=‘checkbox‘]:checked::after {
      background-color: $color-main;
      border: none;
      content: ‘2713‘;
      font-size: 14px;
      font-weight: bold;
    }

 

以上是关于修改input复选框样式的主要内容,如果未能解决你的问题,请参考以下文章

uni-app radio的样式如何修改

用jquery修改默认的单选框radio或者复选框checkbox选择框样式

改变默认的多选框 checkbox 样式~

element-ui踩坑

自定义input[type="checkbox"]的样式

替换input单选框的样式