Skip to content

Instantly share code, notes, and snippets.

@flabernardez
Created April 4, 2021 17:52
Show Gist options
  • Save flabernardez/0aff37960cc60ebf6ba29a3459e58157 to your computer and use it in GitHub Desktop.
Save flabernardez/0aff37960cc60ebf6ba29a3459e58157 to your computer and use it in GitHub Desktop.
#css #grid grid responsive
.grid {
--cols: 3;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(Max(calc(100% / var(--cols, 1)), 250px), 1fr));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment