Skip to content

Instantly share code, notes, and snippets.

@Gioni06
Created November 3, 2019 19:33
Show Gist options
  • Save Gioni06/8cc27a40f34d694cd3a44710955181bc to your computer and use it in GitHub Desktop.
Save Gioni06/8cc27a40f34d694cd3a44710955181bc to your computer and use it in GitHub Desktop.
.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