Forget About Margin
In Grid, distance between cells is controlled by the gap property.
Why Is This Cool?
- Only Inside: Margins appear only between cells. Edge elements won't have extra margin that breaks the layout edge.
- Separate Control: You can set
row-gap(between rows) andcolumn-gap(between columns).
.gallery {
display: grid;
gap: 20px 10px; /* 20px vertically, 10px horizontally */
}
Note
Previously this property was called grid-gap, but now it's universal and works even in Flexbox.