I find it surprising how many CSS articles reverse media queries incorrectly.
To reverse @media (min-width: 5em)
🚫 @media (max-width: 5em)
✅ @media not all and (min-width: 5em)
Written by
in Notes.
I find it surprising how many CSS articles reverse media queries incorrectly.
To reverse @media (min-width: 5em)
🚫 @media (max-width: 5em)
✅ @media not all and (min-width: 5em)
Leave a Reply