Created
January 19, 2019 02:33
-
-
Save theuves/9b43411b47002dd72de04a96a1b0195c to your computer and use it in GitHub Desktop.
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
.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