Skip to content

Instantly share code, notes, and snippets.

@a-fro
Created November 15, 2019 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-fro/130aa0db9bc77c89db5c906fa615909a to your computer and use it in GitHub Desktop.
Save a-fro/130aa0db9bc77c89db5c906fa615909a to your computer and use it in GitHub Desktop.
Device support media queries
/* smartphones, touchscreens */
@media (hover: none) and (pointer: coarse) {
/* ... */
}
/* stylus-based screens */
@media (hover: none) and (pointer: fine) {
/* ... */
}
/* Nintendo Wii controller, Microsoft Kinect */
@media (hover: hover) and (pointer: coarse) {
/* ... */
}
/* mouse, touch pad */
@media (hover: hover) and (pointer: fine) {
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment