flexbox-cheatsheet -css
flexbox-cheatsheet -css
align-items: center;
flex-flow: row nowrap; (flex-direction flex-wrap)
flex-grow: 0;
align-items: flex-end;
flex-direction: row; flex-grow: 1;
align-items: baseline;
flex-direction: row-reverse;
flex-shrink: 0;
align-content: stretch;
flex-direction: column;
flex-shrink: 1;
align-content: flex-start;
flex-direction: column-reverse;
flex-basis: auto;
align-content: center;
flex-wrap: nowrap;
align-self: auto;
align-content: flex-end;
flex-wrap: wrap;
align-self: flex-start;
align-content: space-between;
flex-wrap: wrap-reverse;
align-self: center;
align-content: space-around;
justify-content: flex-start;
align-self: flex-end;
place-content: center start;
justify-content: center; (align-content justify-content)
align-self: baseline;
justify-content: flex-end;
align-self: stretch;
justify-content: space-between;
justify-content: space-around;