我是Less的新手。我了解变量,mixins的基础知识和嵌套定义。
我有一个选择器
.my-parent .my-child { color: red; }
和另一个选择器
.foo .bar { color: green; }
我知道默认情况下每个课程都是Less in Less,所以我可以这样做
.foo .bar { .my-parent() }
然而,当我这样做时
.foo .bar { .my-child() }
我的编译器抱怨,因为.my-child
不存在,因为它是另一个选择器的部分。
我可以创建一个新的mixin,将所有属性从1个整个选择器复制到另一个吗?