According to the W3C
To rule @media
, was introduced in CSS2, thanks to it it is possible to create different rules for different types of media. That is, monitors, mobile phones, 4K TV.
Example: You can create a rule from CSS to standard Desktop Monitors. Another rule for printing ( see, not just monitors ). Inclusive, 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:
UP TO the size width
480px, do what’s between the { CSS-COde }
Then from 0px to 480px, it will run the CSS code between the keys.
In your case:
From 10px to maximum screen size, it will run the CSS code between the keys.
Take a look here Introduction about Media Queries
– William Novak