We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

neal_grosskopf on 03/25/08


Tagged

css media


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

neal_grosskopf
Akiva


Media Targeting With CSS Using @Media


Published in: CSS 


URL: http://www.nealgrosskopf.com/tech/thread.asp?pid=8

Consolidate all your various stylesheets into one and cut down on requests to your server by placing your screen, print & handheld stylesheets into one stylesheet


  1. @media print {
  2.  
  3. .class
  4. {
  5. }
  6.  
  7. }
  8.  
  9. @media handheld {
  10.  
  11. .class
  12. {
  13. }
  14.  
  15. }
  16.  
  17. @media aural {
  18.  
  19. .class
  20. {
  21. }
  22.  
  23. }

Report this snippet 

You need to login to post a comment.