@media rule – a short blog trip on CSS media queries
Let’s explore a few things about the most important feature of CSS styles @media rule that is defined to specify the styles to different media types for different responsive screens, print layouts, other screen devices. Example: [html] <style="text/css"> @media print { body { font-size: 10pt } } @media screen { body { font-size: 12pt } […]