You are on page 1of 1

CSS FLEX DISPLAY

display:flex;

CSS FLEX DIRECTION


flex-direction:row;
or
flex-direction:column;
or
flex-direction:row-reverse;
or
flex-direction:column-reverse;

CSS FLEX WRAP


flex-wrap: wrap;
or
flex-wrap:nowrap;

CSS FLEX FLOW


flex-flow: (row, row-reverse, column, column-reverse) (wrap, no wrap);

CSS FLEX ALIGN GROUP


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

CSS FLEX ALIGN SINGLE


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

CSS FLEX ALIGN CROSS-AXIS


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

CSS FLEX JUSTIFY MAIN-AXIS


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

You might also like