是否可以使用手写笔mixin返回选择器

时间:2015-08-29 07:16:19

标签: css stylus

最近我在使用scss一段时间后一直在试用手写笔。我虽然没有找到一种方法用手写笔语法编写下面的scss。有没有人有任何解决方案。任何想法都非常感激。

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

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

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

1 个答案:

答案 0 :(得分:3)

这是可能的: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;
    }
}