在SASS中访问父级的一级

时间:2014-08-21 11:22:48

标签: sass

我有像

这样的代码
.portlet {  
    .portlet-body {
        .microsites {
            .portlet-body {
            }
        }
    }
}

如何使用SASS删除重复.portlet-body?我读到了&,但这对我没有帮助。有没有人有解决方案?

1 个答案:

答案 0 :(得分:3)

这可能是一个解决方案:

.portlet-body {
  .portlet & {
  }
  .microsites & {
  }
}