最近,在使用scss一段时间后,我一直在尝试手写笔。我虽然还没有找到用手写笔语法编写以下scss的方法。有谁对此有任何解决方案。任何想法都非常感谢。

@mixin attention() {
    &:hover,
    &:active,
    &:focus {
        @content;
    }
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    @include attention() {
        outline: none;
        color: #09f;
    }
}

最佳答案

这是可能的:https://learnboost.github.io/stylus/docs/mixins.html#block-mixins

attention() {
    &:hover,
    &:active,
    &:focus {
        {block}
    }
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    +attention() {
        outline: none;
        color: #09f;
    }
}

07-28 12:16