wxss var不支持全局变量
经实验,如下似乎在wxss中不支持全局变量哇???
:root { --primary-color: #167075;}.some-text { color: var(--primary-color)}/* # 外部引入方式(不支持?) *//* variables.wxss */:root { --primary-color: red;} /* app.wxss */@import "./variables.wxss";.some-text { color: var(--primary-color)}/* # 局部声明(的确是支持的) */.some-text { --primary-color: red; color: var(--primary-color)
|
–这样子就很尴尬。。。
