css学习杂记

1、css中的&语法

&是sass的语法,代表上一级选择器。

例如:

.el-row {
    margin-bottom: 20px;
    &:last-child

{
    margin-bottom: 0;
}
}

相当于css写法:

.el-row {
    margin-bottom: 20px;
}
    .el-row:last-child {
        margin-bottom: 0;
    }

  

posted @ 2019-03-16 22:55  软件开发-汪七北  阅读(211)  评论(0编辑  收藏  举报