Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors。
譯 : 組件和引用組件的頁面不能使用id選擇器(#a
)、屬性選擇器([a]
)和標簽名選擇器,請改用class選擇器。
https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html
這篇文檔上說: 組件和引用組件的頁面不能使用id選擇器(#a
)、屬性選擇器([a]
)和標簽名選擇器,請改用class選擇器。
#a { } /* 在組件中不能使用 */ [a] { } /* 在組件中不能使用 */ button { } /* 在組件中不能使用 */ .a > .b { } /* 除非 .a 是 view 組件節點,否則不一定會生效 */
轉: https://developers.weixin.qq.com/community/develop/doc/000caa250fc8301d9658e091359c00