CSS2 allows you to specify stylesheet for specific media type such as screen or print. Now CSS3 makes it even more efficient by adding media queries. You can add expressions to media type to check for certain conditions and apply different stylesheets. For example, you can have one stylesheet for large displays and a different stylesheet specifically for mobile devices. It is quite powerful because it allows you to tailor to different resolutions and devices without changing the content. Continue on this post to read the tutorial and see some websites that make good use of media queries.
CSS3 Media Queries()
Check my and resize your browser window to see it in action.
Max Width
The following CSS will apply if the viewing area is smaller than 600px.
If you want to link to a separate stylesheet, put the following line of code in between the <head> tag.
Min Width
The following CSS will apply if the viewing area is greater than 900px.
Multiple Media Queries
You can combine multiple media queries. The following code will apply if the viewing area is between 600px and 900px.
Device Width
The following code will apply if the max-device-width is 480px (eg. iPhone display). Note: max-device-width means the actual resolution of the device and max-width means the viewing area resolution.
For iPhone 4
The following stylesheet is specifically for iPhone 4 (credits: ).
For iPad
You can also use media query to detect orientation (portrait or landscapse) on the iPad (credits: ).
Media Queries for Internet Explorer
Unfortunately, media query is not supported in Internet Explorer 8 or older. You can use Javascript to hack around. Below are some solutions:
- (this article is written 6 years ago)