首页 > 代码库 > Sass for循环中编译%时报错解决方案
Sass for循环中编译%时报错解决方案
sass功能强大,特别是支持for循环,节省大量开发时间,但是在开发时遇到一个问题,直接使用%时没有问题,当有变量时再加% 单位在编译时报错;
这样没有问题:
@for $width from 0 to 10{ .wp#{$width}{ width:$width px; }}
但是这样就有问题了:
@for $width from 0 to 10{ .wp#{$width}{ width:$width%; }}
或者这样:
@for $width from 0 to 10{ .wp#{$width}{ width:$width %; }}
编译时报错,试了好多方法还是不行,最后采用很二的方式竟然可以了:
@for $width from 0 to 10{ .wp#{$width}{ width:$width+0%; }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。