Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and at

微信小程序项目报错:Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.
在这里插入图片描述
解决方法:

1、组件和引用组件的页面不能使用 id 选择器(#a)、属性选择器([a])和标签名选择器,请改用 class 选择器。
2、组件和引用组件的页面中使用后代选择器(.a .b)在一些极端情况下会有非预期的表现,如遇,请避免使用。
3、子元素选择器(.a>.b)只能用于 view 组件与其子节点之间,用于其他组件可能导致非预期的情况。
4、继承样式,如 font 、 color ,会从组件外继承到组件内。
5、除继承样式外, app.wxss中的样式、组件所在页面的的样式对自定义组件无效(除非更改组件样式隔离选项)。

我出现的错误就是 用了属性选择器 才会出现这样的错误 把 image 改成 类名就好了

.product-content-img {
  width: 100%;
  height: 120rpx;
  image {
    border-radius: 25rpx;
    width: 100%;
    height: 100%;
  }
}

你可能感兴趣的:(小程序,微信小程序,小程序,javascript,前端,微信)