Spacing between flexbox items

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

    You can try setting the same margin for all the boxes, and then revert this on the container:

    So replace this:

    .flex > * { margin: 0 10px; }    
    .flex > :first-child { margin-left: 0; }
    .flex > :last-child { margin-right: 0; }
    
    .flex.vertical > :first-child { margin-top: 0; }
    .flex.vertical > :last-child { margin-bottom: 0; }
    

    With this:

    .flex.vertical { margin: -20px 0 0 -20px; }
    .flex > * { margin: 0 0 0 20px; }
    .flex.vertical > * { margin: 20px 0 0 0; }
    

提交回复
热议问题