Skip to content

Instantly share code, notes, and snippets.

@CGastrell
Last active August 29, 2015 14:15
Show Gist options
  • Save CGastrell/a17db79e36688410cad6 to your computer and use it in GitHub Desktop.
Save CGastrell/a17db79e36688410cad6 to your computer and use it in GitHub Desktop.
Example of or in media queries
body {
font-size: 14px;
}
/* targeting iPhones 1 through 5 and any other device which height is less than 480px */
@media screen and (max-device-width: 320px, max-device-height: 480px) {
body: {
font-size: 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment