Sass-四种编译输出代码风格

Sass编译生成的.css文件可以通过配置命令或koala得到不同的代码输出风格

1,Sass-style-4种编译模式-命令方式

sass --watch style.scss:style.css --style compact
sass --watch style.scss:style.css --sourcemap
sass --watch style.scss:style.css --style expanded --sourcemap
sass --watch style.scss:style.css --debug-info
- --style表示解析后的css是什么格式,有四种取值分别为:nested,expanded,compact,compressed。
- --sourcemap表示开启sourcemap调试。开启sourcemap调试后,会生成一个后缀名为.css.map文件。
- --debug-info表示开启debug信息,升级到3.3.0之后因为sourcemap更高级,这个debug-info就不太用了。

2,Sass-style-4种编译模式-koala方式

Sass-四种编译输出代码风格_第1张图片


3,四种代码风格的输出示例:

// nested
#main {
  color: #fff;
  background-color: #000; }
#main p {
  width: 10em; }

.huge {
  font-size: 10em;
  font-weight: bold;
  text-decoration: underline; }

// expanded
#main {
  color: #fff;
  background-color: #000;
}
#main p {
  width: 10em;
}

.huge {
  font-size: 10em;
  font-weight: bold;
  text-decoration: underline;
}

// compact
#main { color: #fff; background-color: #000; }
#main p { width: 10em; }

.huge { font-size: 10em; font-weight: bold; text-decoration: underline; }

// compressed
#main{color:#fff;background-color:#000}#main p{width:10em}.huge{font-size:10em;font-weight:bold;text-decoration:underline}

以上就是Sass输出风格控制的设置方法-命令+Koala配置方法

参照:
    http://www.w3cplus.com/sassguide/compile.html

你可能感兴趣的:(sass,Sass基础)