{Carrer web log} ←
Bulletproof CSS3 media queries
Tuesday, July 20, 2010 { 14 Comments }
If you are part of the CSS community you probably know that CSS3 media queries will change the way how we write CSS.Why is that?
CSS3 media queries are very handy to target various devices with various monitor (screen) size. With the help of the CSS3 media queries we can have site optimized for iPhone and other mobile devices, with the same solution we can have site optimized for iPad and all other tablets . This CSS solution will be much more cheaper than building new mobile web site something like http://m.somewebsite.com or http://ipad.somewebsite.com .
Can we start using the CSS3 media queries today?
Yes we can!
The main problem of the CSS3 media queries is they will not work in the older browsers .
CSS3 media queries will not work in IE8 (and lower) also browsers lower then Firefox 3.5, Safari 3, and Opera 7. Basically the main problem is IE and the older version of Firefox.
For the mobile web browsers this solution should work for the modern webkit and opera browsers that support CSS3 media queries.
I tried to resolve this problem by providing pure CSS solution for 95% of market share PC browsers and JavaScript solution for the rest of the browsers.
Here is the solution:
<!-- Big screen -->
<link rel="stylesheet" type="text/css" href="CSS/main.css" media="screen and (min-device-width: 800px)" />
<!-- Tablet pc -->
<link rel="stylesheet" type="text/css" href="CSS/tablet.css" media="screen and (min-device-width: 481px) and (max-device-width: 799px)" />
<!-- Mobile -->
<link rel="stylesheet" type="text/css" href="CSS/mobile.css" media="only screen and (max-device-width: 480px)" />
<!-- If is lower than IE9 use conditional comments -->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="CSS/main.css" media="all" />
And the JavaScript solution for Firefox:
<script type="text/javascript">
if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
var ffversion=new Number(RegExp.$1);
if (ffversion<=3.5){
var headID = document.getElementsByTagName("head")[0];
var cssNode = document.createElement('link');
cssNode.type = 'text/css';
cssNode.rel = 'stylesheet';
cssNode.href = 'CSSNEW/main.css';
cssNode.media = 'screen';
headID.appendChild(cssNode);
}
}
</script>
We have one CSS for mobile browsers with max screen of 480px. For the older phones who doesn’t support CSS3 media queries we can alternately add media="handheld" CSS.
For the monitor size from 481px to 799px (iPad and other tablets) we will have other CSS.
In the case of the monitors from 800px and more we will have the main CSS.
All current IE browsers don’t support media queries but we can easily fix this by using IE Conditional Comments
For the older version Firefox we can use JavaScript
Probably very few people use Opera6 and Safari2 so I didn’t provide any solution. Alternately can be added JavaScript solution.
This CSS + JavaScript solution should work at 99% of all PC browsers and on newer Opera and Webkit mobile browsers.
Other important thing the browsers will probably download only one ( <link type="text/css" … /> ) stylesheet and ignore all the other CSS. In this way the browser will not load unnecessary CSS.
I’m not 100% sure that all the browsers will ignore the unnecessary CSS probably the browser speed experts like Steve Souders and Stoyan Stefanov may know little more about this.
Demo of this solution
Download the code
Conclusion: CSS3 Media Queries are cheap and easy way to optimize your web site for various devices. With this solution you can safely cover 99% of PC browsers and the modern mobile browsers (iPhone, iPad, Android, new webkit BlackBerry and the new Opera Browsers).
Other useful resources:
- Responsive Web Design
- CSS3 Media Queries
- CSS Media Queries & Using Available Space
- Media queries
- Eric Meyer at An Event Apart [PIC]
- How To Use CSS3 Media Queries To Create a Mobile Version of Your Website
- W3C Media Queries
14 Responses to “Bulletproof CSS3 media queries”
-
//
// 7/20/2010
I would strongly advocate using media queries within the same CSS file rather than splitting them up into 2 different ones. It does the same thing with the benefit of not doing 3 separate page requests.
I still do not get why you need JS for old versions of Firefox. It would make sense if you are detecting the viewport widths and serving a different CSS file based on that, but that does not seem to be the case. - // Save the Pengiuins // 7/20/2010
- // Unknown // 7/20/2010
-
// Jasper van der Kamp
// 7/20/2010
@Gabe: I use media queries the other way around. In my stylesheet i begin with the mobile styles. For larger screens I then use a media querie and put all the floats etc. in it. This way other mobile browsers (Nokia, Blackberry etc.) are also included.
For IE<9 I use a conditional comment with the large screen styles from the main stylesheet. -
// Vladimir
// 7/20/2010
@Divya : My hope was that the browser will make only one http requests and for the other 2 CSS queries will return false. But like I sad I'm not sure about this. I optimized for Firefox because there are still many users that use Firefox 3.5 or lower http://www.w3schools.com/browsers/browsers_firefox.asp.
@Save the Pengiuins: You can add something like this for the new iPhone: <link rel="stylesheet" type="text/css" href="/css/mobile.css" media="only screen and (-webkit-min-device-pixel-ratio: 2)" />
@Gabe: For the mobile browser who doesn't support CSS3 media queries we can add media="handheld" if for some reason this solution doesn't work the user will be able to see pure HTML. - // Unknown // 7/20/2010
- // Roman // 7/21/2010
-
// Rimantas
// 7/22/2010
@Roman: it's not about making "mobile sites" it's about making websites to look good on different resolutions.
Current WebKit powered mobile browsers are quite capable, so making separate sites is just a waste of time. Spending some time to improve how your site look on mobile device on the other hand will benefit users. - // Beben Koben // 7/25/2010
-
//
// 10/09/2010
Are we laboring under the impression that users on mobile devices *want to do the same things* as their sedentary friends?
The main purpose of providing a dedicated mobile site is not to fiddle about with screen sizes *on* a mobile, but to create an interface, experience and, most importantly a set of functionality that is suited for humans who *are* mobile. -
// offbeatmammal
// 3/22/2011
James has a point.... a lot of the time on a mobile client you might not want to download an lot of extra content.
Just hiding it via CSS makes the UI look good, but better to not waste the bandwidth in the first place.
Sadly there's no good way to do that that's foolproof so I think a combination of techniques will be haunting us for a while yet - // // 8/10/2011
- // // 9/30/2011
-
// Vladimir
// 9/30/2011
@Anonymous: This solution is not responsive web design, if you resize the browser it won't work. It will work only if are using deferent device like iPhone, iPad .. The goal is to force the browser to download only the CSS that is used for that device not all the CSS. That is the main difference with the responsive CSS solution.
<< Home
About Me <<<
Name: Vladimir Carrer
vladocar [at] gmail.com
Location: Verona, Italy
I'm a web designer, developer, teacher, speaker, generally web addicted ...
My projects <<<
- AI Prompt Directory
- Hand Drawn Icons
- Font Design Inspiration
- Font Pairings
- Free SVG Cut File
- Upcoming NFT projects
- Discord Tutorials
- Free Sublimation Designs
- Tech Feed
- MySQL Lite Administrator
- Quark Mini PHP CMS
- Formy - CSS Form Framework
- Emastic - CSS Framework
- Malo - CSS Library
- The Golden Grid
- 1 line CSS Grid Framework
- Two Lines CSS Framework
- Child Selector System - CSS Framework
- Better Web Readability Project
- Azbuka - CSS Typographical Base Rendering Library
- ClipR - bookmarklet for better reading
- CSS3 Action Framework
- CSS Mini Reset
- HTML5 Mini Template
- CSS Mobile Reset
- picoCSS - JavaScript Framework
- HTML Lorem Ipsum Crash Test
- Object Auto Documentation - JavaScript
- o - JS Library for Object Manipulation
- Foxy - CSS Framework
- Tumblr Free Theme - Better Readability Project
- Box - CSS Framework
- SMART CSS GRID
- nanoJS - Minimal JS DOM Library
- Flexy CSS Framework
- Katana is CSS Layout System made with Flexbox
- Micro CSS Reset
- 60 Grid System
- Simple CSS Button
- ramd.js JavaScript library for making web applications.
- Minimal Notes web app build with Vue.js
- Scribble Font for Prototyping & Wireframing
- Flex One - 1 CSS Class System
- Floaty - CSS Float Based Layout System
- Infinity CSS Grid
- CLI Convert websites into readable PDFs
- keywords-extract - CLI tool, extract keywords from any web page.
- screenshoteer - Make website screenshots and mobile emulations from the command line.
- Basic.css - Classless CSS Starter File
§§Previous Posts <<<
- Distributed Color Palette – Photoshop Tool
- iPhone Grid System
- CSS Mini Reset
- CSS vendor prefixes – Can we all get along
- CSS3 Action Framework
- Minimalistic Wallpaper for iPad
- Photoshop glyphs tester
- Hacker News mini Redesign [Unofficial]
- ClipR - bookmarklet for better internet reading
- About the 80 million dollars Blue (#0044cc)
Other Profiles <<<
Content is licensed under a Creative Commons Public Domain License