scss 简单的Sass字体mixin

Posted

tags:

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

@mixin fontface($name, $file, $style: normal, $weight: normal) {
    @font-face {
        font-family: $name;
        font-weight: $weight;
        font-style: $style;
        src: url('../fonts/' + $file + '.ttf');
    }
}

以上是关于scss 简单的Sass字体mixin的主要内容,如果未能解决你的问题,请参考以下文章