checkbox背景颜色是怎么控制的
发布于 5 年前 作者 nazou 17165 次浏览 来自 问答

哪位大神知道checkbox背景颜色是怎么控制的?如果想改变checkbox的背景颜色该怎么写呢?

1 回复

/*  重写 checkbox 样式  */

checkbox .wx-checkbox-input {

  border-radius: 50%;

  width: 40rpx;

  height: 40rpx;

}

checkbox .wx-checkbox-input.wx-checkbox-input-checked {

  border: none;

  background: red;

}

checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {

  border-radius: 50%;

  width: 40rpx;

  height: 40rpx;

  line-height: 40rpx;

  text-align: center;

  font-size:30rpx;

  color:#fff;

  background: transparent;

  transform:translate(-50%, -50%) scale(1);

  -webkit-transform:translate(-50%, -50%) scale(1);

}

回到顶部