如果我的选择器包含在锚标记中,我想更改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