本文主要是介绍微信小程序 单选框,复选框样式自定义,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/* radio未选中时样式 */
radio .wx-radio-input{
border-radius: 3rpx;
height: 26rpx;
width: 26rpx;
margin-top: -4rpx;
/* 自定义样式.... */
}
/* radio未选中时样式 */
radio .wx-radio-input{
width:30rpx;
height:30rpx;
border:2rpx solid rgba(153,153,153,1);
border-radius:50%;
}
/* radio选中时样式 */
radio .wx-radio-input.wx-radio-input-checked{
background-color: #e02e24;
border: 1rpx solid #e02e24;
/* 自定义样式.... */
}
/* radio选中时样式 */
radio .wx-radio-input.wx-radio-input-checked::before{
width:30rpx;
height:30rpx;
padding: 10rpx;
background:rgba(255,156,0,1);
border-radius:50%;
}
/* checkbox未选中时样式 */
checkbox .wx-
这篇关于微信小程序 单选框,复选框样式自定义的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!