0
我有以下更少的代碼:媒體查詢,而不是
@mobile: ~'screen and (max-width: 480px)';
然後我用它如下:
@media @mobile {
// some code
}
它工作正常,但我想也用「不」,如:
@media not @mobile {
// some code
}
但我得到的錯誤
ParseError: Unrecognised input
在「不」部分。
可以解決這個問題嗎?