Skip to content

Instantly share code, notes, and snippets.

@cezar-plescan
Created July 12, 2024 17:00
dynamic equal columns with a min width
.product-list {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
padding: 1rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment