Files
yoga/website/contents/properties/flex-direction.md
Emil Sjölander bbdb62e654 Use absolute paths in links
Summary: allow-large-files

Reviewed By: danielbuechele

Differential Revision: D7023260

fbshipit-source-id: a797d09b61530b13da10e02c21acef13c508470c
2018-02-19 02:57:52 -08:00

1.1 KiB

path, title, hasPlayground
path title hasPlayground
/docs/flex-direction Flex Direction true

Flex Direction

Flex direction controls the direction in which children of a node are laid out. This is also referred to as the main axis. The main axis is the direction in which children are laid out. The cross axis the the axis perpendicular to the main axis, or the axis which wrapping lines are laid out in.

ROW (DEFAULT) Align children from left to right. If wrapping is enabled then the next line will start under the first item on the left of the container.

COLUMN Align children from top to bottom. If wrapping is enabled then the next line will start to the left first item on the top of the container.

ROW REVERSE Align children from right to left. If wrapping is enabled then the next line will start under the first item on the right of the container.

COLUMN REVERSE Align children from bottom to top. If wrapping is enabled then the next line will start to the left first item on the bottom of the container.