webpackJsonp([0xda3f0f8ed7b0],{521:function(n,e){n.exports={pathContext:{frontmatter:{path:"docs/justify-content",hasPlayground:!0,initialPlayground:null,redirect:null},html:"
Justify content describes how to align children within the main axis of their container.\nFor example, you can use this property to center a child horizontally within a container\nwith flex direction
set to row
or vertically within a container with flex direction
\nset to column
.
FLEX START (DEFAULT) Align children of a container to the start of the container's main axis.
\nFLEX END Align children of a container to the end of the container's main axis.
\nCENTER Align children of a container in the center of the container's main axis.
\nSPACE BETWEEN Evenly space of children across the container's main axis, distributing\nremaining space between the children.
\nSPACE AROUND Evenly space of children across the container's main axis, distributing\nremaining space around the children. Compared to space between
using\nSspace around
will result in space being distributed to the beginning of\nthe first child and end of the last child.