Skip to content

Instantly share code, notes, and snippets.

@thecodemedia
Created June 7, 2021 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecodemedia/7e56e1a26186c269e58014f8ab25c4da to your computer and use it in GitHub Desktop.
Save thecodemedia/7e56e1a26186c269e58014f8ab25c4da to your computer and use it in GitHub Desktop.
.parent {
display: grid;
grid-template: auto 1fr auto / auto 1fr auto;
}
header {
padding: 2rem;
grid-column: 1 / 4;
}
.left-side {
grid-column: 1 / 2;
}
main {
grid-column: 2 / 3;
}
.right-side {
grid-column: 3 / 4;
}
footer {
grid-column: 1 / 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment