在SASS,我有这个
ArrayList<Integer>
除了在浏览器中出现
@mixin background_gradient($dir, $from, $to) {
background: linear-gradient('to #{$dir}', $from, $to); // for IE10
}
但它必须是
browser: linear-gradient("to top", #ffffff, #ffffff)
没有引号。
我该怎么做?
由于
答案 0 :(得分:1)
如果需要从字符串中删除引号,可以使用unquote
函数:
@mixin background_gradient($dir, $from, $to) {
background: linear-gradient(unquote('to #{$dir}'), $from, $to);
}