我正在尝试使用LESS CSS来编写我的CSS但是我遇到了嵌套伪类的问题 我
.class1 {
&:nth-of-type(2n) {
.class2{
}
}
}
输出是:
.class1.class2:nth-of-type(2n) {}
但我想要这个:
.class1:nth-of-type(2n) .class2{}
有什么想法吗?
答案 0 :(得分:2)
不是问题。你可能有一个没有生成正确代码的LESS CSS版本。试试online less converter,看看它运行正常。这是我得到的:
(在)
.class1 {
&:nth-of-type(2n) {
.class2{
x:1;
}
}
}
(下)
.class1:nth-of-type(2n) .class2 {
x: 1;
}