Created
May 22, 2017 23:01
-
-
Save fredericksilva/a0805a6e2e5a224fbef9b81be8de0990 to your computer and use it in GitHub Desktop.
mediaquery
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 screen | |
and (min-device-width : 1080px) | |
and (max-device-width : 1920px) | |
and (min-resolution: 401dpi) | |
and (device-aspect-ratio:16/9) | |
{ } | |
@media screen | |
and (min-device-width : 750px) | |
and (max-device-width : 1334px) | |
and (min-resolution: 326dpi) | |
{ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment