微信小程序 真机调试警告:Some selectors are not allowed in component wxss


 

真机调试,打开调试模式,看到如下警告信息,查看后,发现wxss中有如下样式

.a-view image {
  width: 50rpx;
  height: 50rpx;
  border-radius: 50%;
  overflow: hidden;
} 

 

组件样式,规则如下:(查看更多:组件模板和样式

 

 

原因image在组件中不能使用,需要给<image>标签添加class="img"

wxss改为:

.a-view .img {
  width: 50rpx;
  height: 50rpx;
  border-radius: 50%;
  overflow: hidden;
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM