如源码:
ul{
margin-bottom: 20px;
& >li {
margin-bottom: 0;
}
}
& 表示嵌套的上一级
这是sass的语法,代表上一级选择器
解释成css代码如下
ul{
margin-bottom: 20px;}
ul > li {
margin-bottom: 0;}
如源码:
ul{
margin-bottom: 20px;
& >li {
margin-bottom: 0;
}
}
& 表示嵌套的上一级
这是sass的语法,代表上一级选择器
解释成css代码如下
ul{
margin-bottom: 20px;}
ul > li {
margin-bottom: 0;}