Being somewhat new to Flexbox (although experienced in CSS), it seems to me that one thing conveniently "glossed over" by most tutorials I've read is the spacing between flex items.
For example, one of the most cited tutorials is this one at CSS Tricks.
It's very good and has been helpful, diagrams like this have thrown me off:
Notice the spaces between the flex items. Although not mentioned anywhere, nor in the sample code, it would seem the only way to get the spaces is with css margins.
Correct, or am I missing something important here?
Because what i need to create is this, a lot like the "center" demo above:
However, when I try it myself, I of course get this:
if I use space-around, I get this instead. Huge space.
Therefore it seems I need to add margin-right to the first 2 boxes to get 3 centered boxes with a small gap between them.
Is this simply a bad use case for Flexbox? Because I see little advantage creating my 3 boxes with Flexbox over using simple margins and centering.
Am I missing something obvious here?
justify-content: space-between
. With your answer I noticed I had left a forgottenmargin: auto
in the items CSS from a previous style. After I removed it, the "flex spacing" worked properly (no more irregular spaces on the sides). – Bueno