如何在sass / scss中转义字符串css?

时间:2014-01-05 16:08:41

标签: css sass

我有一个包含css值的字符串,我想使用它,但是使用gruntjs会给我一个错误

Syntax error: Invalid CSS after "   @media ": expected media query (e.g. print, screen, print and screen), was "$from-smartphon..."

这是我的var

$from-smartphone-portrait:         "only screen and (min-width: 1px)";

这就是我所说的:

    @media $from-smartphone-portrait {
        // Smartphone portrait
        body {
            font-size: 12px;
            line-height: 14px;
        }
    }

在LESS我可以在这种模式下逃脱:

@from-smartphone-portrait:         ~"only screen and (min-width: 1px)";

如何在SASS / SCSS中做同样的事情?

由于

1 个答案:

答案 0 :(得分:20)

您可以使用unquote功能:

$from-smartphone-portrait: unquote("only screen and (min-width: 1px)");

将变量用于媒体查询定义:

@media #{$from-smartphone-portrait} {