Skip to content

Instantly share code, notes, and snippets.

@emilbjorklund
Created June 30, 2016 17:24
Show Gist options
  • Save emilbjorklund/f65683d377653c79bb66a2a6bf393263 to your computer and use it in GitHub Desktop.
Save emilbjorklund/f65683d377653c79bb66a2a6bf393263 to your computer and use it in GitHub Desktop.
/* 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