热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

自定义.sass的格式输出?-Customizingtheformattingoutputof.sass?

#foo{color:black;}Istheresomesortofoptiontoprefixanewlinebeforethetrailing}when
#foo {
color:black; }

Is there some sort of option to prefix a newline before the trailing } when a .css file is generated from .sass?

当.sass生成.css文件时,是否有某种选项在尾}前面加上换行前缀?

I would appreciate it if someone included an example of combining sass --watch style.scss:style.css, which is what I'm using, along with this newline requirement.

如果有人能结合sass -watch style.scss:style,我会很感激的。css,我用的就是css,还有换行要求。

2 个解决方案

#1


48  

You can pass a --style parameter to specify what you want. I think you want the "expanded" style:

您可以传递一个-style参数来指定您想要的。我认为你想要“扩展”的风格:

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

See the Sass documentation for different output styles.

有关不同的输出样式,请参阅Sass文档。

#2


4  

You can set the style to expanded: http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style

您可以将样式设置为展开的:http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style


推荐阅读
author-avatar
BeckyWang25_966
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有