Skip to content

Instantly share code, notes, and snippets.

@jlozovei
Created June 26, 2023 18:30
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 jlozovei/e5e30d0a4dfa7be518e6324a69ca6dab to your computer and use it in GitHub Desktop.
Save jlozovei/e5e30d0a4dfa7be518e6324a69ca6dab to your computer and use it in GitHub Desktop.
Grid layout using CSS grid
:root {
--columns: 16;
}
.grid {
grid-template-columns: repeat(var(--columns), [col-start] 1fr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment