码迷,mamicode.com
首页 > Web开发 > 详细

css学习杂记

时间:2019-03-16 23:21:32      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:symbol   20px   margin   div   选择   last   杂记   sas   语法   

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;
    }

  

css学习杂记

标签:symbol   20px   margin   div   选择   last   杂记   sas   语法   

原文地址:https://www.cnblogs.com/wanggang2016/p/10544839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!