scss 注意力mixin.scss

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 注意力mixin.scss相关的知识,希望对你有一定的参考价值。

// When we give an element some ‘attention’.
@mixin attention() {

    &:hover,
    &:active,
    &:focus {
        @content;
    }

}

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

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

}

.btn {
    background-color: #09f;

    @include attention() {
        background-color: darken(#09f, 10%);
    }

}

以上是关于scss 注意力mixin.scss的主要内容,如果未能解决你的问题,请参考以下文章

scss flex mixin scss

scss grandparent_mixin.scss

scss 占位符色,mixin.scss

scss Border Radius Mixin(SCSS)

scss 圆圈mixin.scss

scss 网格mixin.scss