// @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