Sass里的&符号是代表什么意思呢?

那天突然看到这个 & 一下忘记是什么意思了

.el-row {
  margin-bottom: 20px;
    &:last-child {
      margin-bottom: 0;
     }
}
代表上一级选择器,实际编译成css就是 .el-row:last-child{...}

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