我有一个包含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中做同样的事情?
由于
答案 0 :(得分:20)
您可以使用unquote
功能:
$from-smartphone-portrait: unquote("only screen and (min-width: 1px)");
将变量用于媒体查询定义:
@media #{$from-smartphone-portrait} {