Responsive Web Design To create the web pages look good in all devices like ( Desktop, Tablets and Mobiles / Phones ). It is about using CSS and HTML to hide, resize, enlarge, shrink or move the content to make it look good on any screen.   These days every new client wants a mobile […]

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 […]