Spacing between flexbox items

前端 未结 9 1452
星月不相逢
星月不相逢 2021-01-30 12:25

This is what I want:

\"flex

The closest I\'ve got. Applying margin on flexbox items, then re

9条回答
  •  太阳男子
    2021-01-30 13:14

    Another solid point for using Flex is that you can specify the strategy to use for the remaining space:

    .container {
        justify-content: space-between;
    }
    

提交回复
热议问题