私の Less ファイルには、Less でメディアクエリに使用したいいくつかの変数が含まれています。
@mobile: ~"only screen and (max-width: 529px)";
@tablet: ~"only screen and (min-width: 530px) and (max-width: 949px)";
@desktop: ~"only screen and (min-width: 950px) and (max-width: 1128px)";
@desktop-xl: ~"only screen and (min-width: 1129px)";
私のcssでは、たとえば次のようにします:
@media @desktop{
.test{
font-size: 12px;
}
}
プリプロセッサで解析しようとするとコンパイルされますが、LessPHP で解析すると次のエラーが発生します。
PHP Fatal error: Uncaught exception 'Exception' with message 'parse error: failed at `@media @desktop {`