Created
November 6, 2021 19:45
-
-
Save hubgit/bbb6f20dad24511431c4efd990f19984 to your computer and use it in GitHub Desktop.
CSS Grid Layout
This file contains 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
.container { | |
height: 100%; | |
overflow: hidden; | |
display: grid; | |
grid-template-columns: 1fr 1fr; | |
grid-template-rows: auto 1fr auto; | |
column-gap: 5px; | |
} | |
@media (max-width: 800px) { | |
.container { | |
grid-template-columns: none; | |
} | |
} | |
.header { | |
grid-column-start: 1; | |
grid-column-end: -1; | |
padding: 5px; | |
} | |
.footer { | |
grid-column-start: 1; | |
grid-column-end: -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment