在 scss
中,&
表示当前路径
示例一
1 | .child { |
编译后为1
2
3
4
5
6.child{
}
.child.child-cur{
}
示例二
1 | .child{ |
编译后为1
2
3
4
5
6.child{
display: none;
}
.page-ios .child{
display: block;
}
想学更多有意思的东西,想做自己的网站,想学画画
在 scss
中,&
表示当前路径
1 | .child { |
编译后为1
2
3
4
5
6.child{
}
.child.child-cur{
}
1 | .child{ |
编译后为1
2
3
4
5
6.child{
display: none;
}
.page-ios .child{
display: block;
}