Created
February 6, 2021 15:09
-
-
Save goiblas/4d011c9c18473a00a08c0475ca74d7c6 to your computer and use it in GitHub Desktop.
grid auto-fit columns
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-columns: repeat(auto-fit, minmax(240px, 1fr)); | |
gap: 20px; | |
width: 90%; | |
margin: 0 auto; | |
max-width: 680px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment