NG: justify-content has no effect without display: flex

Child 1
Child 2
Child 3

OK: add display: flex first

Child 1
Child 2
Child 3

NG: gap has no effect (parent is a regular block element)

Child 1
Child 2

OK: gap works with display: flex

Child 1
Child 2

NG: no flex-wrap (children overflow)

Child 1
Child 2
Child 3

OK: flex-wrap: wrap enables line wrapping

Child 1
Child 2
Child 3