Basic flexbox
Another flex item
All direct children of the flex container become flex children
Understanding flex-grow
      Take total amount of free space and divide it according to the flex-grow values for each flex item
With default values of flex: 0 1 auto
A
B
C
With flex: 1 1 auto
A
B
C
With last item not growing
A
B
C
Understanding flex-shrink
      For each of the flex items that needs to be shrunk:
- Multiply its flex-shrinkvalue by itsflex-basis
- Divide the resultant value by the sum of flex-basisvalues of all the flex items
- Take this value and multiply by the total amount of space that needs to be shrunk
- That final value is the amount your flex item needs to shrink by
A
150px
B
450px
C
300px
        A: (1 * 150) / (150 + 450 + 300) * 300 = 50px
        B: (1 * 450) / (150 + 450 + 300) * 300 = 150px
        C: (1 * 300) / (150 + 450 + 300) * 300 = 100px
      
    Understanding flex-basis
      With initial value of all items set to auto, content width of longest sentence is around 455px
Word
This is a sentence.
This is a much longer sentence so this example can make sense.
If width value is present, it will become the flex-basis value
Word
This is a sentence.
This is a much longer sentence so this example can make sense.
If flex-basis value is set, it will take precedence and become the flex-basis value
Word
This is a sentence.
This is a much longer sentence so this example can make sense.
When flex values are set to flex: 1 1 auto
This is a sentence.
This is a another sentence.
We just need content that takes up space here.
When flex values are set to flex: 1 1 0
This is a sentence.
This is a another sentence.
We just need content that takes up space here.
Flex directions
Initial value of row
Another flex item
All direct children of the flex container become flex children
With flex-direction: column
Another flex item
All direct children of the flex container become flex children
With flex-direction: row-reverse
Another flex item
All direct children of the flex container become flex children
With flex-direction: column-reverse
Another flex item
All direct children of the flex container become flex children