如何在没有深度嵌套的情况下以更简单的方式使用scss为第n个嵌套子项应用样式
答案 0 :(得分:0)
你的意思是:
.class {
&:nth-child(odd) {
// Style here...
}
}
根据你的评论,你需要把你的CSS写成
.contaier.desc {
.hello2 {
.hello3 {
background-color-red;
}
}
}