# Flexbox
Flexbox is a high level positioning plugin that allows for dynamic positioning of elements based apon container sizing. To learn more about flexbox refer to this [MDN article](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Flexbox), in this document we will go into the impleamentation of flexbox rather than the usage of it.
> "display": "flex",
> "justify-content": "\*",
> "align-content": "\*",
> "align-items": "\*",
> "flex-wrap": "\*",
> "flex-direction": "\*",
## Flex Properties
| justify-content | align-content | align-items | flex-wrap | flex-direction |
| --------------- | ------------- | ----------- | --------- | -------------- |
| normal | normal | normal | nowrap | row |
| center | center | center | wrap | column |
| flex-start | flex-start | flex-start | | row-reverse |
| flex-end | flex-end | flex-end | | column-reverse |
| space-between | space-between | stretch | | |
| space-around | space-around | baseline | | |
| space-evenly | stretch | | | |
## order?(go)
asd
<{./main.go}>