我@content
在 mixins 中使用来简化媒体查询。如果我在嵌套类中使用第一个 mixin,输出会冒泡并嵌套类。第二个示例根本不起作用(没有错误),嵌套似乎无法正常工作。
这工作正常
// Everything larger than a landscape tablet but less than or equal to the desktop
@mixin desktop-only {
@media only screen and (min-width : $mq-tablet-landscape + 1) and (max-width : $mq-desktop) {
@content;
}
.lt-ie9
{
@content;
}
}
这不起作用
@mixin ie8 {
.lt-ie9
{
@content;
}
}