@miragecraft posted on Twitter the following discovery:
@media (width < 640px) {
/* styles */
}
/* is the same as */
@media (max-width: 640px) {
@media not (width: 640px) {
/* styles */
}
}
This seems like a better output than the (max-width: 639.98px) workaround that this plugin currently uses. Has this solution ever been considered?
@miragecraft posted on Twitter the following discovery:
This seems like a better output than the
(max-width: 639.98px)workaround that this plugin currently uses. Has this solution ever been considered?