看文档elementUI文档 当中&是什么用途?
安然亦智
css学习杂记
1、css中的&语法
&是sass的语法,代表上一级选择器。
例如:
1 2 3 4 5 6 7 8 |
.el-row {
margin-bottom : 20px ;
&:last-child
{
margin-bottom : 0 ;
}
}
|
相当于css写法:
1 2 3 4 5 6 |
.el-row {
margin-bottom : 20px ;
}
.el-row:last-child {
margin-bottom : 0 ;
}
|
标签:el,elementui,bottom,element,文档,ui,margin,css,row From: https://www.cnblogs.com/effortandluck/p/16966683.html