Vocabulary of useful material regarding flexbox
model.
Everything what you need to know about flexbox
What is Flexbox? What is
flex container
andflex items
? linkThe Flex container properties link
flex-direction: row || column || row-reverse || column-reverse
linkflex-wrap: wrap || nowrap || wrap-reverse
linkflex-flow: shorthand of
flex-direction&
flex-wrap` linkjustify-content: flex-start || flex-end || center || space-between || space-around
linkalign-items: flex-start || flex-end || center || stretch || baseline
linkalign-content: flex-start || flex-end || center || stretch || baseline
link
The Flex item properties link
order
linkflex-grow
andflex-shrink
linkflex-basis
linkThe
flex
shorthand forflex-grow
,flex-shrink
,flex-basis
linkflex: default
asflex: 0 1 auto
flex: none
asflex: 0 0 auto
flex: auto
asflex: 1 1 auto
flex: {positive number}
asflex: {positive number} 1 0
align-self: auto || flex-start || flex-end || center || baseline || stretch
linkThe definition of absolute and relative flex-items link
margin: auto
on flex-items linkWhat happens when you switch
flex-direction
? linkTutorial demo