docs/data/system/components/stack/stack.md
The Stack component manages the layout of its immediate children along the vertical or horizontal axis, with optional spacing and dividers between each child.
:::info Stack is ideal for one-dimensional layouts, while Grid is preferable when you need both vertical and horizontal arrangement. :::
{{"component": "@mui/internal-core-docs/ComponentLinkHeader", "design": false}}
import Stack from '@mui/system/Stack';
The Stack component acts as a generic container, wrapping around the elements to be arranged.
Use the spacing prop to control the space between children.
The spacing value can be any number, including decimals, or a string.
(The prop is converted into a CSS property using the theme.spacing() helper.)
{{"demo": "BasicStack.js", "bg": true}}
Stack is concerned with one-dimensional layouts, while Grid handles two-dimensional layouts. The default direction is column which stacks children vertically.
By default, Stack arranges items vertically in a column.
Use the direction prop to position items horizontally in a row:
{{"demo": "DirectionStack.js", "bg": true}}
Use the divider prop to insert an element between each child, as shown below:
{{"demo": "DividerStack.js", "bg": true}}
You can switch the direction or spacing values based on the active breakpoint.
{{"demo": "ResponsiveStack.js", "bg": true}}
To use flexbox gap for the spacing implementation, set the useFlexGap prop to true.
It removes the known limitations of the default implementation that uses CSS nested selector. However, CSS flexbox gap is not fully supported in some browsers.
We recommend checking the support percentage before using it.
{{"demo": "FlexboxGapStack.js", "bg": true}}
Below is an interactive demo that lets you explore the visual results of the different settings:
{{"demo": "InteractiveStack.js", "hideToolbar": true, "bg": true}}
Use the sx prop to quickly customize any Stack instance using a superset of CSS that has access to all the style functions and theme-aware properties exposed in the MUI System package.
Below is an example of how to apply center align items using this prop:
<Stack sx={{ alignItems: 'center' }} />
Customizing the margin on the children is not supported by default.
For instance, the top-margin on the button component below will be ignored.
<Stack>
<button style={{ marginTop: '30px' }}>...</button>
</Stack>
:::success
To overcome this limitation, set useFlexGap prop to true to switch to CSS flexbox gap implementation.
You can learn more about this limitation by visiting this RFC. :::
The initial setting on flex items is min-width: auto.
This causes a positioning conflict when children use white-space: nowrap;.
You can reproduce the issue with:
<Stack direction="row">
<span style={{ whiteSpace: 'nowrap' }}>
In order for the item to stay within the container you need to set min-width: 0.
<Stack direction="row" sx={{ minWidth: 0 }}>
<span style={{ whiteSpace: 'nowrap' }}>
The Stack component is composed of a single root <div> element:
<div class="MuiStack-root">
<!-- Stack contents -->
</div>