小程序
小游戏
企业微信
微信支付
扫描小程序码分享
这里家里ext-class,但是没有生效,生效的只有后边的文字,radio的背景色修改不了
添加color 还是backbg 都没有改变radio的背景色
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
extclass 是checkbox后面的 这个view的样式。
修改checkbox 需要重写微信checkbox的默认css。
/* pages/register_step1/register_step1.wxss */
checkbox .wx-checkbox-input {
width: 34rpx;
height: 34rpx;
border-radius: 5rpx;
border: 4rpx solid hsla(207, 87%, 41%, 0.847);
}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
checkbox .wx-checkbox-input{ /*checkbox css style*/ } checkbox .wx-checkbox-input.wx-checkbox-input-checked{ /*checkbox checked css style*/ } .radio .wx-radio-input{ /*radio css style*/ } .radio .wx-radio-input.wx-radio-input-checked{ /*radio checked css style*/ }
请提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
extclass 是checkbox后面的 这个view的样式。
修改checkbox 需要重写微信checkbox的默认css。
/* pages/register_step1/register_step1.wxss */
checkbox .wx-checkbox-input {
width: 34rpx;
height: 34rpx;
border-radius: 5rpx;
border: 4rpx solid hsla(207, 87%, 41%, 0.847);
}
checkbox .wx-checkbox-input{ /*checkbox css style*/ } checkbox .wx-checkbox-input.wx-checkbox-input-checked{ /*checkbox checked css style*/ } .radio .wx-radio-input{ /*radio css style*/ } .radio .wx-radio-input.wx-radio-input-checked{ /*radio checked css style*/ }
请提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html