Skip to content

Instantly share code, notes, and snippets.

@freewayspb
Last active February 3, 2021 10:30
Show Gist options
  • Save freewayspb/808f8afd34dc6acde97113d35d6538aa to your computer and use it in GitHub Desktop.
Save freewayspb/808f8afd34dc6acde97113d35d6538aa to your computer and use it in GitHub Desktop.
css detect device, custom styles for touch and non touch devices example
/* 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