2019-11-23 Flex gap solution Author Jens Törnell Comments Start a discussion While CSS grid has support for grid-gap, no such thing is supported for flex. So flex-gap does not exist. Workaround .flex { display: flex; margin: -5px; } .flex .item { margin: 5px; } Full page If you like this post, please share it! Tweet this!
Comments