Skip to content

Instantly share code, notes, and snippets.

@alienlebarge
Last active May 27, 2016 05:32
Show Gist options
  • Save alienlebarge/940fc2d681b51096d54b0bcaaa79b416 to your computer and use it in GitHub Desktop.
Save alienlebarge/940fc2d681b51096d54b0bcaaa79b416 to your computer and use it in GitHub Desktop.
Test grid support
/**
* Simple layout for Non-Grid-Supporting Browsers
*/
.wrapper {
...
}
/**
* CSS Grid Layout Based Layout
*/
@support (display: grid) {
.wrapper {
...
}
// all the fabulousness will go here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment