scss Sass测试和使用

Posted

tags:

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

/*! Framework 1.2.4 */
/* # Nested properties

*/
.selector1 {
  border: 0px solid black;
  border-color: silver;
  border-top: 1px;
  border-bottom: 1px; }

.funky {
  font-family: fantasy;
  font-size: 30em;
  font-weight: bold; }
// ----
// libsass (v3.1.0)
// ----

$version: '1.2.4';
// This comment 'll exit in compressed mode
/*! Framework #{$version} */

/* # Nested properties

*/
.selector1 {
  border: 0px solid black {
    color:silver;
    top:1px;
    bottom:1px;
  }
}

.funky {
  font: {
    family: fantasy;
    size: 30em;
    weight: bold;
  }
}

以上是关于scss Sass测试和使用的主要内容,如果未能解决你的问题,请参考以下文章

css、scss、sass 和 less 有啥区别? [复制]

为啥我们使用 SASS,甚至我们使用 SCSS? [复制]

scss Sass:使用Map #sass键入值工厂和验证器

sass和scss区别?

使用 Parcel、SASS 和 TypeScript 将 SCSS 文件作为 CSS 字符串导入

scss使用指南--每天一点