Spacing between flexbox items

前端 未结 9 1429
星月不相逢
星月不相逢 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:16

    here is another way of getting the same thing.

    .vertical > div{ margin-bottom: 10px; }
    .vertical > div:last-child{ margin-bottom: 0; }
    .box + .box{ margin-left: 10px; }
    

提交回复
热议问题