重新复写自定义radio选中时的背景颜色无效,wx.navigateBackMiniProgram ios失效##微信小程序教程。但checkbox可以,radio选中时的伪元素before又生效,这是什么原因呢?
/*选中更改背景颜色 无效*/
radio .wx-radio-input.wx-radio-input-checked{
border: none;
background: red;
}
/*选中更改背景颜色 有效*/
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
border: none;
background: red;
}
/* 选中后的更改背景颜色,选中样式 有效/*
radio .wx-radio-input.wx-radio-input-checked::before{
position: absolute;
top: 22rpx;
left: 23rpx;
width: 26rpx;
height: 26rpx;
background: yellow;
border-radius: 50%;
text-align: center;
font-size:0rpx;
transform:translate(-50%, -50%) scale(1);
-webkit-transform:translate(-50%, -50%) scale(1);
}
本文来自微信小程序开发者论坛 -微信小程序工厂 http://www.xcxgc.com,转载请保留,开发微信小程序、定制微信小程序来微信小程序工厂网。
网友回复
朝阳**回复:
先看一下类的权重问题
本文网址:http://www.91bianli.com/kaifazhinan/63008.html