Skip to content

Instantly share code, notes, and snippets.

@tonifisler
Last active May 9, 2018 13:13
Show Gist options
  • Save tonifisler/c3995786da24f8a47610d05bfaf8b034 to your computer and use it in GitHub Desktop.
Save tonifisler/c3995786da24f8a47610d05bfaf8b034 to your computer and use it in GitHub Desktop.
CSS Grid article
.content aside {
grid-column: sidebar2;
}
.content figure {
grid-column: content-wide;
}
.content > * {
grid-column: content;
}
.content {
display: grid;
grid-template-columns:
[full-start sidebar1-start] 1fr
[content-wide-start] 1fr
[sidebar1-end content-start] repeat(6, 1fr)
[content-end] 1fr
[content-wide-end sidebar2-start] repeat(3, 1fr)
[sidebar2-end full-end];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment