Created
May 14, 2017 08:48
-
-
Save eivindml/84fb39b1f3e3dce1e52c6cfea118d4a2 to your computer and use it in GitHub Desktop.
Minimalist CSS grid, using new CSS grid property. π Check compatibility before use.
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
.l-wrap | |
width: 100% | |
max-width: 1196px | |
margin: 0 auto | |
.l-grid | |
display: grid | |
grid-gap: 52px | |
grid-template-columns: repeat(6, 1fr) | |
&--col | |
grid-column: (auto / span) 6 | |
@for $i from 1 through 6 | |
&-#{$i} | |
grid-column: (auto / span) $i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment