我正在体验我认为scss中的奇怪行为。
我有一个嵌套2级深度的课程,我尝试使用&符号来定位直接父级,但是它会定位到父级的父级。
.one {
.two{
.three & {
background:red;
//should be .one .three .two right?
//instead targets .three .one .two
}
}
}
以下是codepen http://codepen.io/gpspake/pen/KpeEXp
上此行为的示例