当前位置:   article > 正文

报错:Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and

some selectors are not allowed in component wxss, including tag name selecto

文章首发观看更佳


报错:Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selector

官网给出的解释是:https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html

组件样式

组件对应 wxss 文件的样式,只对组件wxml内的节点生效。编写组件样式时,需要注意以下几点:

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



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/731129
推荐阅读
相关标签
  

闽ICP备14008679号