如何在SASS中使用带引号的变量格式化文本?

时间:2017-11-22 17:37:51

标签: html css sass

在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)

没有引号。

我该怎么做?

由于

1 个答案:

答案 0 :(得分:1)

如果需要从字符串中删除引号,可以使用unquote函数:

@mixin background_gradient($dir, $from, $to) {
    background: linear-gradient(unquote('to #{$dir}'), $from, $to);
}