引用生成的 class 名称的 JSS 语法是什么?
What is the JSS syntax for referencing generated class names called?
Material UI 以 JSS 为核心,您有时需要覆盖其基础组件的样式。
Example from Input
: '&:hover:not($disabled):before'{ ... }
我找不到JSS syntax docs中提到的这种语法,所以没有共同的名字很难与其他人讨论。它叫什么?
此功能是通过 a plugin for nesting 实现的。
插件本身将其描述为 "nested selectors",这也是您在搜索 Stack Overflow 时通常会发现用于描述它的术语。
Material UI 以 JSS 为核心,您有时需要覆盖其基础组件的样式。
Example from Input
: '&:hover:not($disabled):before'{ ... }
我找不到JSS syntax docs中提到的这种语法,所以没有共同的名字很难与其他人讨论。它叫什么?
此功能是通过 a plugin for nesting 实现的。
插件本身将其描述为 "nested selectors",这也是您在搜索 Stack Overflow 时通常会发现用于描述它的术语。