scss SCSS中的插值

Posted

tags:

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

$some-height: 500;
$another-height: 500px;

//standard interpolation
.someClass {
  height: #{$some-class}px;
}

//using varable with measure values
.anotherClass {
  height: ($another-height/2); //without brackets it would fail
}

以上是关于scss SCSS中的插值的主要内容,如果未能解决你的问题,请参考以下文章

5.Scss的插值

scss 插值sass变量

SCSS 插值无法为宽度分配百分比

SCSS语法

scss 常用API

你真的会用scss吗 scss常用语法总结