【发布时间】:2021-11-05 23:55:44
【问题描述】:
我用:
.first{
.second{
.third{
.between_second_and_third & {
/* some rules */
}
}
}
}
最后我得到了:
.between_second_and_third .first .second .third {/* some rules */}
但我想要:
.first .second .between_second_and_third .third {/* some rules */}
我该怎么做?
【问题讨论】: