在blog-card组件的wxss中设置page的属性,编译会报下面警告
来源:5-10 博客卡片组件blog-card
farmyard
2020-04-10
在升级微信小程序的版本后,在blog-card组件的wxss中设置page的属性,编译会报下面警告(注释掉就没有了):
Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./components/blog-card/blog-card.wxss:1:1)
就是这段代码
page {
background-color: #f1f1f1;
}
请问这个实现需要做调整吗?
写回答
1回答
-
这个是不建议在小程序中使用css的元素选择器、属性选择器、id选择器。
可以给page设置一个class,然后通过这个class来选中,就不会有这个警告了。
012020-04-11
相似问题