在用clearfix清除浮动时
.clearfix{
&:before,
&:after{
content: " ";
display: table;
}
&:after{
clear:both;
}
}
不能带括号,即不能用clearfix()
否则会无法继承,只能继承一个类
在用clearfix清除浮动时
.clearfix{
&:before,
&:after{
content: " ";
display: table;
}
&:after{
clear:both;
}
}
不能带括号,即不能用clearfix()
否则会无法继承,只能继承一个类