Skip to content

Instantly share code, notes, and snippets.

@goiblas
Created February 6, 2021 15:09
Show Gist options
  • Save goiblas/4d011c9c18473a00a08c0475ca74d7c6 to your computer and use it in GitHub Desktop.
Save goiblas/4d011c9c18473a00a08c0475ca74d7c6 to your computer and use it in GitHub Desktop.
grid auto-fit columns
.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