美文网首页
sass版本更新, 旧变量调用语法将不适用新版本

sass版本更新, 旧变量调用语法将不适用新版本

作者: LUGY | 来源:发表于2019-10-16 18:23 被阅读0次
    :root {
      // WRONG, will not work in recent Sass versions.
      --accent-color-wrong: $accent-color;
    
      // RIGHT, will work in all Sass versions.
      --accent-color-right: #{$accent-color};
    }
    

    详见: https://sass-lang.com/documentation/breaking-changes/css-vars

    相关文章

      网友评论

          本文标题:sass版本更新, 旧变量调用语法将不适用新版本

          本文链接:https://www.haomeiwen.com/subject/cpwumctx.html