.hoverlink {
@extend a:hover;
}
.comment a.user:hover {
font-weight: bold;
}
编译出来的CSS
.comment a.user:hover, .comment .user.hoverlink {
font-weight: bold; }
不明白这样的继承方式,有什么规律可循吗
@extend a:hover;
}
.comment a.user:hover {
font-weight: bold;
}
编译出来的CSS
.comment a.user:hover, .comment .user.hoverlink {
font-weight: bold; }
不明白这样的继承方式,有什么规律可循吗
2017-03-24
最赞回答 / 玩偶lpa
$social-network,$social-color只是同时获取$social-colors中某个象的key和value,并不能转换成一个列表
不明白@each $social-network,$social-color in ,each in 中间部分的含义
2017-03-23
.casl{
text:percentage(5);
text:round(52.3);
text:ceil(2.6);
text:floor(3.3);
text:abs(-55);
text:min(55,23);
text:max(36,25);
text:random(1);
}
text:percentage(5);
text:round(52.3);
text:ceil(2.6);
text:floor(3.3);
text:abs(-55);
text:min(55,23);
text:max(36,25);
text:random(1);
}
2017-03-14