Skip to content

Instantly share code, notes, and snippets.

@francoisgeorgy
Last active March 22, 2020 09:41
Show Gist options
  • Select an option

  • Save francoisgeorgy/976b6a9ef86b83aaed93b5d457c2cb46 to your computer and use it in GitHub Desktop.

Select an option

Save francoisgeorgy/976b6a9ef86b83aaed93b5d457c2cb46 to your computer and use it in GitHub Desktop.
responsive css #grid
.container {
display: grid;
grid-gap: 5px;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
grid-template-rows: repeat(2, 100px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment