Skip to content

Instantly share code, notes, and snippets.

@ashleydw
Created February 21, 2012 14:28
Show Gist options
  • Save ashleydw/1876783 to your computer and use it in GitHub Desktop.
Save ashleydw/1876783 to your computer and use it in GitHub Desktop.
CSS 3 Inline Media Queries
/* mobile (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
}
/* mobile (landscape) ----------- */
@media only screen and (min-width : 321px) {
}
/* mobile (portrait) ----------- */
@media only screen and (max-width : 320px) {
}
/* tablets (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
}
/* tablets (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}
/* tablets (portrait) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment