Gap and Layout Spacing
Learn about dynamic spacing techniques in flexbox and grid layouts using the gap property, demonstrated with the clamp() function and vmax unit.
We'll cover the following...
Difference between gap
and margin
When using flexbox or grid layout, we have access to the gap
property. Although it exists between elements, it differs from margin
in a few key ways:
Its default value is
0
, with no browser defaults to override.It can be set independently for the row or column axis.
It’s only applied internally to a flex or grid layout, not outside a flex or grid container. ...