Last active
May 27, 2016 05:32
-
-
Save alienlebarge/940fc2d681b51096d54b0bcaaa79b416 to your computer and use it in GitHub Desktop.
Test grid support
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
| /** | |
| * 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