检查时如何更改背景颜色

时间:2019-02-05 20:46:49

标签: css bulma

因此在传统上如何执行此操作方面有很多答案,但是我使用的是CSS库Bulma,但这些解决方案似乎都无效。我只需要能够在选中时更改复选框的颜色即可。

我尝试使用!important使其正常工作,但没有改变。

<div >
 <label class="checkboxes" for="exact" id="color">
 <input type="checkbox" id="exact" value="exact" checked>
  Exact
 </label>
</div>

在这里添加了CSS库。 https://jsfiddle.net/yqwp4eoh/

1 个答案:

答案 0 :(得分:1)

您不能更改默认复选框的背景。您必须隐藏它并进行自定义,或者将其width/height设置为0,或者将display: none设置为隐藏它,然后使用span或{{1 }}伪类以应用您的样式。

以下是W3Schools中的详细示例:

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

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}