Your answer : Different browsers might see screen, color and other properties as screen media type
The only keyword is used to specify that a media query should only apply to the specified media type, and not to any other media types. For example,@media only screen { /* CSS rules here */ } targets screens only, and not print media or speech media.
Your answer : Different browsers might see screen, color and other properties as screen media type
The only keyword is used to specify that a media query should only apply to the specified media type, and not to any other media types. For example,
@media only screen { /* CSS rules here */ }
targets screens only, and not print media or speech media.