Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(.<URL>:1)
时间: 2024-05-24 08:10:24 浏览: 304
selectors.js
This means that when writing CSS in a component's wxss file in WeChat Mini Programs, certain selectors cannot be used. These include selectors that target HTML tag names (such as `div` or `p`), ID selectors (such as `#myElement`), and attribute selectors (such as `[data-attribute="value"]`). Instead, selectors should target classes or custom components.
阅读全文