Skip to content

Instantly share code, notes, and snippets.

@theuves
Created January 19, 2019 02:33
Show Gist options
  • Save theuves/9b43411b47002dd72de04a96a1b0195c to your computer and use it in GitHub Desktop.
Save theuves/9b43411b47002dd72de04a96a1b0195c to your computer and use it in GitHub Desktop.
.page {
grid-template-areas:
'header header header header header header'
'menu main main main right right'
'menu footer footer footer footer footer';
}
.header { grid-area: header; }
.menu { grid-area: menu; }
.main { grid-area: main; }
.right { grid-area: right; }
.footer { grid-area: footer; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment