好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

sass初级语法

用到的sass语法是:

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

如下图:

 

1 自定义变量

test.scss内容是:

 $color: black;
.test1 {
    background-color: $color;
}   

查看更多关于sass初级语法的详细内容...

  阅读:41次