小程序
小游戏
企业微信
微信支付
扫描小程序码分享
目前面临的主要问题
checkbox的大小有点太大了,ms没法调整。
checkbox 和它对应的文本没有严格垂直居中对齐,
请参照下图,用了flex layout, 文本是垂直居中的。 但是明显checkbox向下有偏移。
希望能改进下。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
/* 重写 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 {
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);
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
的确太大了,求改小的方法
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
/* 重写 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);
}
的确太大了,求改小的方法