Created
November 1, 2017 22:52
-
-
Save zastrow/01d6961c76b46a14cb1eacfa4ca08bbe to your computer and use it in GitHub Desktop.
Microsoft Edge 15 down support an older spec of CSS grid which can cause some layout issues, this mixin utilizes a compound @supports query to weed out this issue.
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
// Microsoft Edge 15 down support an older spec of CSS grid | |
// which can cause some layout issues, this mixin utilizes | |
// a compound @supports query to weed out this issue. | |
@mixin grid-support { | |
@supports (display: grid) and (not (display: -ms-grid)) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment