This example expresses that a certain style sheet (example.css) applies to devices of a certain media type (‘screen’) with certain feature (it must be a color screen). Here the same media query written in an @import-rule in CSS: @import url(color.css) screen and (color); ——————————– @media only screen and (max-device-width: 480px) { } To target small […]

Comments Off
Comments Off