flex-direction:
row | row-reverse | column | column-reverse

flex-wrap:
nowrap | wrap | wrap-reverse | inherit

will affect flex-items with a "width".

justify-content:
flex-start | flex-end | center | space-between | space-around

align-items:
flex-start | flex-end | center | baseline | stretch

changes invisible unless flex-container has a "height".
Exception: baseline.

align-content:
flex-start | flex-end | center | space-between | space-around | stretch

changes invisible unless flex-container has a "height" AND flex-item has a "width".

order:
integer

flex-grow:
integer

flex-shrink:
integer

align-self:
flex-start | flex-end | center | baseline | stretch

changes invisible unless flex-container has a "height".
Exception: baseline.