The following transformation works as expected:
@media (width >= 500px) {}
/* becomes: */
@media (min-width: 500px) {}
However, I just noticed, that the following does not work:
@media (500px <= width) {}
/* does not become the following: */
@media (min-width: 500px) {}
To my understanding also the latter syntax is expected to work according to Example 16 of Media Queries Level 4 and at least Firefox and Chrome already understand it.
The following transformation works as expected:
However, I just noticed, that the following does not work:
To my understanding also the latter syntax is expected to work according to Example 16 of Media Queries Level 4 and at least Firefox and Chrome already understand it.