The W3C specifications define the valid media features. Only the official and browser-specific media features should be used to get the expected
impact in the final rendering.
Noncompliant code example
@media screen and (unknown: 1000px) { .. }
Compliant solution
@media screen and (width: 1000px) { .. }