更改复选框的颜色

Changing color of the checkbox

我正在做一个项目,我需要复选框的背景为黄色,勾号的颜色为白色。

        <div class="radio-btn">
             <input type="checkbox" name="disclaimer" id="rad-1" required="" />
             <label for="rad-1">Yes, please!</label>
        </div>

这是我的 HTML 它的样式写在下面

#rad-1 {
        height: 20px;
        width: 20px;
        accent-color: yellow;
    }

背景变黄但是tick的颜色变黑 我试过“颜色:白色;”和“背景颜色:白色;”但是 none 这些工作和刻度线保持黑色。

这是它的样子

没有有效的方法(就我现在而言),但是有一些费用,例如 https://doodlenerd.com/html-control/css-checkbox-generator 可以生成自定义复选框,您可以在其中编辑很多东西。

它们使用自定义指标,当您使用标签点击它们时,这些指标会被激活。

我不得不将一些样式应用到复选框并面临许多挑战。下面link对我有帮助,请看一下

How to style a checkbox using CSS

我留给你一个可能的例子:How TO - Custom Checkbox

首先我们隐藏浏览器的默认单选按钮

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

现在我们创建一个自定义单选按钮

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

完整示例

body {
  background-color: grey;
}


/* The container */

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  color: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* Hide the browser's default radio button */

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
  background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.container input:checked~.checkmark {
  background-color: yellow;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


/* Show the indicator (dot/circle) when checked */

.container input:checked~.checkmark:after {
  display: block;
}


/* Style the indicator (dot/circle) */

.container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
<h1>Custom Radio Buttons</h1>
<label class="container">One
  <input type="radio" checked="checked" name="radio">
  <span class="checkmark"></span>
</label>
<label class="container">Two
  <input type="radio" name="radio">
  <span class="checkmark"></span>
</label>
<label class="container">Three
  <input type="radio" name="radio">
  <span class="checkmark"></span>
</label>
<label class="container">Four
  <input type="radio" name="radio">
  <span class="checkmark"></span>
</label>