Skip to content

Instantly share code, notes, and snippets.

@mitchellbusby
Created July 1, 2018 22:42
Show Gist options
  • Save mitchellbusby/443b776f1853c5ee943531a1c22690d7 to your computer and use it in GitHub Desktop.
Save mitchellbusby/443b776f1853c5ee943531a1c22690d7 to your computer and use it in GitHub Desktop.
<div class=”grid-container”>
<nav>
<ul>
<li>Menu item 1</li>
</ul>
</nav>
<main>
<h1>Hello world!</h1>
</main>
</div>
.grid-container {
display: grid;
grid-template-columns: repeat(12, 1fr);
}
nav {
grid-column: span 4;
}
main {
grid-column: span 8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment