Skip to content

Instantly share code, notes, and snippets.

@astrotim
Last active August 23, 2017 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astrotim/7a6e91aa86d48fc2f0438a052459aaf1 to your computer and use it in GitHub Desktop.
Save astrotim/7a6e91aa86d48fc2f0438a052459aaf1 to your computer and use it in GitHub Desktop.
CSS Grid feature detection
@mixin grid-not-supported {
// fallback with native feature detection
@supports not (display: grid) {
@content;
}
// fallback with Modernizr feature detection (IE)
.no-supports & {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment