码迷,mamicode.com
首页 > 其他好文 > 详细

Sass for循环中编译%时报错解决方案

时间:2014-07-09 22:59:13      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   width   

sass功能强大,特别是支持for循环,节省大量开发时间,但是在开发时遇到一个问题,直接使用%时没有问题,当有变量时再加% 单位在编译时报错;

bubuko.com,布布扣

这样没有问题:

@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%;
    }
}

bubuko.com,布布扣

Sass for循环中编译%时报错解决方案,布布扣,bubuko.com

Sass for循环中编译%时报错解决方案

标签:style   blog   http   color   使用   width   

原文地址:http://www.cnblogs.com/kingwell/p/3829657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!