Skip to content

Instantly share code, notes, and snippets.

@ideefixe
Created January 22, 2013 21:16
Show Gist options
  • Save ideefixe/4598515 to your computer and use it in GitHub Desktop.
Save ideefixe/4598515 to your computer and use it in GitHub Desktop.
Browser Media Queries
@-moz-document url-prefix() {
// css goes here
}
@media screen and (min-width:0\0) {
// css goes here
}
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
// css goes here
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* put webkit CSS here*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment