Skip to content

Instantly share code, notes, and snippets.

@dvschultz
Created January 8, 2014 21:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvschultz/8324974 to your computer and use it in GitHub Desktop.
Save dvschultz/8324974 to your computer and use it in GitHub Desktop.
Media Queries: Kindle Fire vs Kindle e-ink.
@media screen and (device-aspect-ratio:1/1) {
/* anything in here will work on Fires. Seriously. */
}
@media not all and (device-aspect-ratio:1/1) {
/* anything in here will work on e-inks */
}
@tooolbox
Copy link

tooolbox commented Jun 5, 2016

This does still work AFAICT, tested it on a 1st gen Kindle Fire vs. a 2nd gen Kindle Paperwhite.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment