// @at-root
.demo {
animation: motion 3s infinite;
@at-root {
@keyframes motion {
0%{
color: map-get($colors, red);
}
100%{
color: map-get($colors, red);
}
}
}
}
這樣就能解釋,"直接寫在最外層不行?"
.demo {
animation: motion 3s infinite;
@at-root {
@keyframes motion {
0%{
color: map-get($colors, red);
}
100%{
color: map-get($colors, red);
}
}
}
}
這樣就能解釋,"直接寫在最外層不行?"
2016-07-31
.footer{
width : percentage(5px / 10px);
height: 5px / 10px * 100#{'%'};
}
// 效果一模一樣,都懶得記這么長的單詞
width : percentage(5px / 10px);
height: 5px / 10px * 100#{'%'};
}
// 效果一模一樣,都懶得記這么長的單詞
2016-07-29