Skip to content

Instantly share code, notes, and snippets.

@agentmilindu
Created May 30, 2012 05:57
Show Gist options
  • Save agentmilindu/2834023 to your computer and use it in GitHub Desktop.
Save agentmilindu/2834023 to your computer and use it in GitHub Desktop.
media queries
<link rel="stylesheet" href="global.css" media="all">
<link rel="stylesheet" href="desktop.css" media="all and (min-width: 700px)">
<!--[if (lt IE 9)&(!IEMobile 7)]>
<link rel="stylesheet" href="desktop.css" media="all">
<![endif]-->
<link rel="stylesheet" href="mobile.css" media="all and (max-width: 700px)">
<!--[if IEMobile 7]>
<link rel="stylesheet" href="mobile.css" media="all">
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment