Sass @ at-root with“&”插值

时间:2015-02-12 11:09:56

标签: sass

如果我的选择器包含在锚标记中,我想更改CSS属性。

现在我有

.btn-crazy-class-name-that-i-dont-want-to-repeat {
   line-height:30px;
}

如果父级是“a”链接,我想更改行高

.btn-crazy-class-name-that-i-dont-want-to-repeat {
  line-height: 30px;
  @at-root a & {
    line-height:40px;
  }
}

我希望结果是

a.btn-crazy-class-name-that-i-dont-want-to-repeat {
  line-height: 40px;
}

但是现在我得到a .btn-crazy-class-name-that-i-dont-want-to-repeat空格。

SassMeister要点:http://sassmeister.com/gist/a5b97c6d78cb4ed456cd

0 个答案:

没有答案