.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