Created
June 30, 2016 17:24
-
-
Save emilbjorklund/f65683d377653c79bb66a2a6bf393263 to your computer and use it in GitHub Desktop.
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
/* this... */ | |
@supports media(min-width: 8sqlorps) { | |
@media (min-width: 8sqlorps) { | |
/* stuff */ | |
} | |
} | |
/* ...would be the same as this... */ | |
@media (min-width: 8sqlorps) { | |
/* ...as this would only be applied if the media query is supported in full. */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment