我无法编译我的LESS文档,因为它为此返回了编译错误:
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
任何人都可以看到这种情况发生的原因吗?我在代码中看不到任何错误。
更新
我正在使用SimpLESS进行编译。我刚检查过,它使用的是LESS 1.3.0。
答案 0 :(得分:6)
这似乎是一个版本问题。在各种版本here上进行检查后,LESS 1.3.1+中的 无问题 。然而,对于1.3.0,它似乎在三点窒息:
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1), //<-HERE on the 2/1
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi), //<-HERE on the dpi
only screen and (min-resolution: 2dppx) //<-HERE on the dppx
{
.test { color: red;}
}