我们可以将(&符号)父选择器链存储在列表中吗? 难道不会(最终)让我们(仅)获得直接的父选择器吗?
.parentpart(@n) {
// Actually, shouldn't be "&" as a string but the parent selector chain.
@part: extract(~"&", @n);
@{part} {
color: red;
}
}
.a {
.b {
.parentpart(1);
}
}
现在,这将输出
.a .b & {
color: red;
}
但我会喜欢这个
.a {
color: red;
}
(或者,实际上,.b{color:red;}
通过传递2
,如果我能够将父选择器链转换为提取函数...