Defines how a flex item is positioned within or relative to the flex container. Mirrors CSS position.
position
The item is removed from flex flow and positioned relative to the flex container using top, left, right, and bottom. Mirrors CSS position: absolute.
position: absolute
The item participates in flex flow; top, left, right, and bottom offsets shift its painted position without affecting sibling layout. Mirrors CSS position: relative.
position: relative
The item participates in flex flow with no offset. Mirrors CSS position: static.
position: static