Flexbox Properties
What if I forget?
https://flexboxfroggy.com/ Great website to re-learn all these concepts again!
Justify-Content
Align the content along the main axis, the possible value can be:
- flex-start (default
- flex-end
- center
- space-between
- space-around
- space-evently
Align-Items
Align the content along the cross axis, the possible values are:
- flex-start
- flex-end
- center
- baseline
- stretch (default)
