Return to Snippet

Revision: 32423
at September 24, 2010 05:58 by Meander365


Initial Code
*Method One*

@media screen and (min-width : 1200px) {
  /* let's do somethin' */
}


*Method Two - Import*

@import url( small.css ) screen and ( min-width: 1200px );  


*Iphone Targeting*

<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="mobile.css" />

Initial URL
http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-a-crash-course-in-css-media-queries/

Initial Description


Initial Title
CSS Media Queries

Initial Tags
css

Initial Language
CSS