sass转换css文件四种转换方式命令,以及自动编译命令

1.nested 编译排版格式

sass alert(路劲/你的文件名).scss:alert(转换后的文件名).css  --style   nested 

2.expanded 编译排版格式

sass alert(路劲/你的文件名).scss:alert(转换后的文件名).css  --style   expanded 

3.compact 编译排版格式

sass alert(路劲/你的文件名).scss:alert(转换后的文件名).css  --style   compact 

4.compressed 编译排版格式

sass alert(路劲/你的文件名).scss:alert(转换后的文件名).css  --style   compressed 

自动编译命令

sass --watch alert(路劲/你的文件名).scss:alert(转换后的文件名).css  

你可能感兴趣的:(前端)