CSS grid example
Updated: 24th April 2025Tags: css grid
I’m saving this grid in case I need it later.
.parent {
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fit, 300px);
gap: 20px;
justify-content: center;
}
.child {
width: 300px;
height: 200px;
background-color: lightskyblue;
}