Skip to content

Instantly share code, notes, and snippets.

@rafegoldberg
Last active January 13, 2021 14:27
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 rafegoldberg/3e76b911731749a77c216f65396b86b8 to your computer and use it in GitHub Desktop.
Save rafegoldberg/3e76b911731749a77c216f65396b86b8 to your computer and use it in GitHub Desktop.
Flexible CSS Grid Generator
.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