Created
November 3, 2019 19:33
-
-
Save Gioni06/8cc27a40f34d694cd3a44710955181bc 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
.grid { | |
display: grid; | |
grid-template-areas: | |
'header header header' | |
'sidebar content content' | |
'footer footer footer'; | |
column-gap: 20px; | |
} | |
.grid > .header { | |
grid-area: header; | |
height: 50px; | |
background: #e6e5e5; | |
padding: 10px; | |
} | |
.grid > .sidebar { | |
grid-area: sidebar; | |
} | |
.grid > .content { | |
grid-area: content; | |
} | |
.grid > .footer { | |
grid-area: footer; | |
height: 50px; | |
background: #e6e5e5; | |
padding: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment