While reviewing CSS code created by another department, I noticed an interesting media descriptor:
@media (max-width:-1) {
...standard css stuff here
}
The value of max-width cannot be less than 0, so what could be the purpose of this? Perhaps it was just some leftover CSS that was being tested?
Furthermore, I also found:
@media (min-width:0) {
}
This media query would always be active since the minimum width can never be lower than 0.