我想实现在scss里动态生成类名的功能,类似这样
@for $i from 10 through 100 {
.font-s-#{$i}{
font-size:#{$i}rpx;
}
}
可是为什么一使用#{}就报错呢
我想实现在scss里动态生成类名的功能,类似这样
@for $i from 10 through 100 {
.font-s-#{$i}{
font-size:#{$i}rpx;
}
}
可是为什么一使用#{}就报错呢
3***@qq.com (作者) - 前端码农
这个的话引入有问题,之前引入css文件这样写的
@import url('/styles/commont.scss');
现在改成
@import '/styles/commont.scss';
就不报错了