更改checkbox以及radio默认样式

/* 多选框 */

checkbox .wx-checkbox-input {

  width: 34rpx;

  height: 34rpx;

  border-radius: 50%;

}

/*checkbox选中后样式  */

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

  background: #7B76E6;

  border-color:  #7B76E6;

}

/*checkbox选中后图标样式  */

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

  width: 20rpx;

  height: 20rpx;

  line-height: 20rpx;

  text-align: center;

  font-size: 22rpx;

  color: #fff;

  background: transparent;

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

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

}

/*  重写 radio 样式  */
/* 未选中的 背景样式 */
radio .wx-radio-input{
  border-radius: 50%;/* 圆角 */
  width: 25rpx;
  height: 25rpx;
}
/* 选中后的 背景样式 (无背景 紫色边框 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked{
  border:1px solid  #9E50F2;
  background:  transparent;
}
/* 选中后的 对勾样式 (紫色圆圈 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked::before{
  border-radius: 50%;/* 圆角 */
  width: 18rpx; /* 选中后对勾大小,不要超过背景的尺寸 */
  height: 18rpx; /* 选中后对勾大小,不要超过背景的尺寸 */
  line-height: 40rpx;
  text-align: center;
  background-color: #9E50F2;
  border-radius: 50%;
  font-size:0rpx; /* 对勾大小 0rpx */
  color:#9E50F2; /* 对勾颜色  */
  transform:translate(-50%, -50%) scale(1);
  -webkit-transform:translate(-50%, -50%) scale(1);
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
当使用 CSS 修改 checkboxradio 样式和尺寸后,可能会导致选择框和后面对应的文字无法水平对齐。这是因为原生的选择框和自定义的选择框大小和位置不同,导致文字对齐出现问题。为了解决这个问题,可以采用以下两种方法之一: 1. 使用 `vertical-align` 属性将选择框和文字垂直对齐。示例代码如下: ```css input[type="checkbox"], input[type="radio"] { display: none; } label.checkbox, label.radio { display: inline-block; vertical-align: middle; margin-right: 10px; position: relative; padding-left: 30px; cursor: pointer; } label.checkbox:before, label.radio:before { content: ""; display: inline-block; width: 20px; height: 20px; border: 1px solid #ccc; position: absolute; left: 0; top: 0; border-radius: 4px; transition: all 0.3s ease; } label.checkbox:before { border-radius: 4px; } label.checkbox:after, label.radio:after { content: ""; display: inline-block; width: 10px; height: 10px; position: absolute; left: 4px; top: 4px; border-radius: 2px; transition: all 0.3s ease; opacity: 0; } label.checkbox:hover:before, label.radio:hover:before { border-color: #666; } input[type="checkbox"]:checked + label.checkbox:before, input[type="radio"]:checked + label.radio:before { border-color: #f00; } input[type="checkbox"]:checked + label.checkbox:after, input[type="radio"]:checked + label.radio:after { opacity: 1; } ``` 2. 将选择框和文字放在容器中,并使用 `display: flex; align-items: center;` 将其垂直对齐。示例代码如下: ```css .container { display: flex; align-items: center; } input[type="checkbox"], input[type="radio"] { display: none; } label.checkbox, label.radio { position: relative; padding-left: 30px; cursor: pointer; } label.checkbox:before, label.radio:before { content: ""; display: inline-block; width: 20px; height: 20px; border: 1px solid #ccc; position: absolute; left: 0; top: 0; border-radius: 4px; transition: all 0.3s ease; } label.checkbox:before { border-radius: 4px; } label.checkbox:after, label.radio:after { content: ""; display: inline-block; width: 10px; height: 10px; position: absolute; left: 4px; top: 4px; border-radius: 2px; transition: all 0.3s ease; opacity: 0; } label.checkbox:hover:before, label.radio:hover:before { border-color: #666; } input[type="checkbox"]:checked + label.checkbox:before, input[type="radio"]:checked + label.radio:before { border-color: #f00; } input[type="checkbox"]:checked + label.checkbox:after, input[type="radio"]:checked + label.radio:after { opacity: 1; } ``` 以上两种方法都可以解决选择框和文字无法水平对齐的问题,根据实际情况选择其中一种即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值