• 2019-11-23

    Flex gap solution

    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;
    }