css - 如何更改复选框,复选框勾选样式

标签 css checkboxlist

这里有一个多选列表,如下所示。

enter image description here

但我无法更改 CSS。这是到目前为止我尝试过的代码,我能够获得轮廓颜色,内部刻度无法看到它。

input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    height: 16px;
    border-radius: 2px;
    line-height: normal;
    box-shadow: none;
    outline-offset: -1px;
    -webkit-appearance: none;
    width: 16px !important;
    margin: 5px;
     appearance:none;
     outline: 2px solid #455eab;
     font-size: 2em;
    
}
.form-check-input{
    width: 35px;
}
input[type="checkbox"]:checked ~ label::before {
    color: #455eab;
}
  <input class="form-check-input"[checked]=true type="checkbox">
  <input class="form-check-input" type="checkbox" >
  <input class="form-check-input" type="checkbox" >
  <input class="form-check-input" type="checkbox" >

最佳答案

你是那个意思吗?

label {
  cursor: pointer;
  display: inline-block;
}
label input[type=checkbox] {
  display: none;
}
label input[type=checkbox]:checked + .cb-icon {
  background: #455DA7;
  border: 2px solid transparent;
}
label input[type=checkbox]:checked + .cb-icon::before {
  display: block;
}
label .cb-icon {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  border-radius: 4px;
  border: 2px solid #455DA7;
  transition: all 0.5s ease;
}
label .cb-icon::before {
  content: "";
  top: 0px;
  left: 5px;
  width: 4px;
  height: 10px;
  display: none;
  position: absolute;
  transform: rotate(45deg);
  transition: all 0.5s ease;
  border-top: 0px solid transparent;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-left: 0px solid transparent;
}
<label>
  <input type="checkbox" name="" />
  <span class="cb-icon"></span>
</label>

<label>
  <input type="checkbox" name="" />
  <span class="cb-icon"></span>
</label>

关于css - 如何更改复选框,复选框勾选样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54454344/

相关文章:

javascript - 当他们的任何一个 child 被取消选择时如何取消选中所有复选框

css - 星级评分渲染而不是简单的 select_tag 下拉渲染

jquery - CSS 背景变化之间的延迟

css - SASS - 访问多维数组的值

jquery - 将类随机添加到两个 div 之一

c# - 多个复选框列表

javascript - 带有div的复选框列表,如何为行着色并全选

html - 在复选框列表文本和复选框之间添加空格

html - 复选框对齐未按预期工作

Jquery - block 的实时位置!