2024-03-08 14:13:55 -08:00
---
sidebar_position: 7
---
2024-03-12 11:31:46 -07:00
import Playground from '@site/src/components/Playground';
2024-03-08 14:13:55 -08:00
# Flex Wrap
2024-03-12 11:31:46 -07:00
2024-03-13 10:19:30 -07:00
The flex wrap property is set on containers and controls what happens when
2024-03-12 11:31:46 -07:00
children overflow the size of the container along the main axis. By default
2024-03-13 10:19:30 -07:00
children are forced into a single line (which can shrink nodes). When wrapping lines [align content](/docs/styling/align-content) can be used to specify how the
2024-03-12 11:31:46 -07:00
lines are placed in the container.
**No wrap (default)**: No wrapping and children might shrink as a result.
**Wrap**: Nodes are wrapped into multiple lines along the main axis if needed.
2024-03-13 10:19:30 -07:00
**Wrap reverse**: Behaves the same as wrap but the order of the lines is reversed.
2024-03-12 11:31:46 -07:00
<Playground code={`<Layout config={{useWebDefaults: false}}>
<Node
style={{
2024-03-13 10:19:30 -07:00
width: 200,
2024-03-12 11:31:46 -07:00
height: 250,
padding: 10,
2024-03-13 10:19:30 -07:00
flexWrap: 'wrap',
2024-03-12 11:31:46 -07:00
}}>
<Node style={{margin: 5, height: 50, width: 50}} />
<Node style={{margin: 5, height: 50, width: 50}} />
<Node style={{margin: 5, height: 50, width: 50}} />
<Node style={{margin: 5, height: 50, width: 50}} />
</Node>
</Layout>`} />