静宁县建设局网站,做网站前期框架图,网站点击代码,自己如何做一个网站需求#xff1a; 想给按钮icon和text改字体颜色#xff0c;结果发现图标颜色并没有改变
.u-button{width: 300rpx;background-color: aliceblue;color: #aaaa7f;margin-top: 20rpx;
}接下来用样式穿透解决
1、首先#xff0c;给UI组件包裹一层view
view classt…需求 想给按钮icon和text改字体颜色结果发现图标颜色并没有改变
.u-button{width: 300rpx;background-color: aliceblue;color: #aaaa7f;margin-top: 20rpx;
}接下来用样式穿透解决
1、首先给UI组件包裹一层view
view classtime_btnu-button iconclock classtimeBtn clickshow true{{ chooseTime }}/u-button
/view2、利用/deep/样式穿透
.time_btn{.u-button /deep/ .u-icon__icon{color: #aaaa7f !important;margin-right: 15rpx !important;}
}完美解决