前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >编译sass

编译sass

原创
作者头像
Qwe7
发布2022-04-18 15:48:53
4980
发布2022-04-18 15:48:53
举报
文章被收录于专栏:网络收集网络收集

编译sass

sass编译有很多种方式,如命令行编译模式、sublime插件SASS-Build、编译软件koala、前端自动化软件codekit、Grunt打造前端自动化工作流grunt-sass、Gulp打造前端自动化工作流gulp-ruby-sass等。

代码语言:javascript
复制

命令行编译;
//单文件转换命令
sass input.scss output.css
 
//单文件监听命令
sass --watch input.scss:output.css

//如果你有很多的sass文件的目录,你也可以告诉sass监听整个目录:

sass --watch app/sass:public/stylesheets

命令行编译配置选项;

命令行编译sass有配置选项,如编译过后css排版、生成调试map、开启debug信息等,可通过使用命令sass -v查看详细。我们一般常用两种--style``--sourcemap。

代码语言:javascript
复制
//编译格式
sass --watch input.scss:output.css --style compact
代码语言:javascript
复制
//编译添加调试map
sass --watch input.scss:output.css --sourcemap
代码语言:javascript
复制
//选择编译格式并添加调试map
sass --watch input.scss:output.css --style expanded --sourcemap

//开启debug信息

sass --watch input.scss:output.css --debug-info

--style表示解析后的css是什么排版格式;

sass内置有四种编译格式:nested``expanded``compact``compressed。

--sourcemap表示开启sourcemap调试。开启sourcemap调试后,会生成一个后缀名为.css.map文件。

四种编译排版演示;

代码语言:javascript
复制
//未编译样式
.box {
  width: 300px;
  height: 400px;
  &-title {
    height: 30px;
    line-height: 30px;
  }
}

nested 编译排版格式

代码语言:javascript
复制
/*命令行内容*/
sass style.scss:style.css --style nested
代码语言:javascript
复制
 
/*编译过后样式*/
.box {
  width: 300px;
  height: 400px; }
  .box-title {
    height: 30px;
    line-height: 30px; }
expanded 编译排版格式

/*命令行内容*/

sass style.scss:style.css --style expanded

代码语言:javascript
复制
/*编译过后样式*/
.box {
  width: 300px;
  height: 400px;
}
.box-title {
  height: 30px;
  line-height: 30px;
}

compact 编译排版格式

代码语言:javascript
复制
/*命令行内容*/
sass style.scss:style.css --style compact
 
/*编译过后样式*/
.box { width: 300px; height: 400px; }
.box-title { height: 30px; line-height: 30px; }
compressed 编译排版格式
/*命令行内容*/
sass style.scss:style.css --style compressed
 
/*编译过后样式*/
.box{width:300px;height:400px}.box-title{height:30px;line-height:30px}

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档