Fix documentation of 'alignContent' property configured with spaces #1808

Closed
santhoshkumarselvaraj wants to merge 1 commits from main into main
Showing only changes of commit e90fd0847d - Show all commits

View File

@@ -17,15 +17,15 @@ has effect when items are wrapped to multiple lines using [flex wrap](/docs/styl
**Center**: Align wrapped lines in the center of the container's cross axis. **Center**: Align wrapped lines in the center of the container's cross axis.
**Space between**: Evenly space wrapped lines across the container's main axis, distributing **Space between**: Evenly space wrapped lines across the container's cross axis, distributing
remaining space between the lines. remaining space between the lines.
**Space around**: Evenly space wrapped lines across the container's main axis, distributing **Space around**: Evenly space wrapped lines across the container's cross axis, distributing
remaining space around the lines. Compared to space between using remaining space around the lines. Compared to space between using
space around will result in space being distributed to the beginning of space around will result in space being distributed to the beginning of
the first lines and end of the last line. the first lines and end of the last line.
**Space evenly**: Evenly space wrapped lines across the container's main axis, distributing **Space evenly**: Evenly space wrapped lines across the container's cross axis, distributing
remaining space around the lines. Compared to space around, space evenly will not remaining space around the lines. Compared to space around, space evenly will not
double the gaps between children. The size of gaps between children and between double the gaps between children. The size of gaps between children and between
the parent's edges and the first/last child will all be equal. the parent's edges and the first/last child will all be equal.