Last active
June 14, 2022 13:03
-
-
Save eldyvoon/8299abdcb7b0bba55e76715ca67b2e3e 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
body { | |
max-width: 700px; | |
margin: 0 auto; | |
padding: 20px; | |
} | |
.container { | |
display: grid; | |
gap: 20px; | |
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); | |
} | |
.item { | |
height: 200px; | |
border: 1px solid; | |
display: grid; | |
place-items: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment