According to W3C
The rule @media
was introduced in CSS2, thanks to it it is possible to create different rules for different media types. That is, monitors, cell phones, 4K TV.
Example: You can create a CSS rule for default Desktop Monitors. Another rule for printing (see, it's not just monitors). Including, rule for Smartphone and Smart TV
As expressions
See the syntax
@media not|only mediatype and (expressions) {
CSS-Code;
}
They are basically conditions. That is, when we use max-width: 480px
, we say:
TO the size width
of 480px, do what is between { CSS-COde }
Then from 0px to 480px, it will execute the CSS code between the keys.
In your case:
From 10px to the maximum screen size, it will execute the CSS code between the keys.