CSS: gap, row-gap, column-gap (flex, grid)
gap (Spacing Between Items)
- CSS property
gapis a shorthand forrow-gapandcolumn-gap. - They are properties for the container of Flexbox or Grid Layout .
- It specify width between the items, but does not add margin to the items.
gap: length;-
gap for between rows and between columns.
123456
row-gap: length;-
the spacing between rows.
123456
column-gap: length;-
the spacing between columns.
123456