Skip to content

Instantly share code, notes, and snippets.

@CGastrell
Last active August 29, 2015 14:15
Show Gist options
  • Save CGastrell/99c24c59ee2912f529a8 to your computer and use it in GitHub Desktop.
Save CGastrell/99c24c59ee2912f529a8 to your computer and use it in GitHub Desktop.
Building media queries
body {
font-size: 14px;
}
/*
...
bunch of lines with excellent css
...
*/
/* targeting iPhones from 1 through 5 */
@media screen and (max-device-width: 320px) {
body {
font-size: 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment