Created
March 12, 2020 09:01
-
-
Save LucaRosaldi/2c27562954144530b07d6e9664a3eb46 to your computer and use it in GitHub Desktop.
CSS: Media Query for touch and non-touch devices
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (hover: hover) { | |
/* targets only non-touch devices */ | |
} | |
@media (hover: none) { | |
/* targets only touch devices */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment