difference between css flex and grid code example
Example: css grid vs flexbox
.wrapper {
display: grid;
grid-template-columns: repeat(auto-fill, 200px);
}
.wrapper {
display: grid;
grid-template-columns: repeat(auto-fill, 200px);
}