Last active
January 13, 2021 14:27
-
-
Save rafegoldberg/3e76b911731749a77c216f65396b86b8 to your computer and use it in GitHub Desktop.
Flexible CSS Grid Generator
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
.grid { | |
display: grid; | |
grid-template-columns: repeat( | |
auto-fill, | |
minmax(15rem, 1fr) | |
); | |
grid-gap: 1rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment