好得很程序员自学网

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

sass中级语法

github地址:https://github.com/lily1010/sass/tree/master/course02

用到的sass语法是:

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

如下图:

1 类名嵌套

test.scss内容是:

 .test1 {
    font-size: .15rem;
    p{
        color: #333;
        .test11 {
            width: 3px;
        }
    }
}  

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

  阅读:30次