-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
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.
raphaelmenges
Metadata
Metadata
Assignees
Labels
No labels