Flexbox
Quickly manage the layout, alignment, and sizing of grid columns, navigation, components, and more with a full suite of responsive flexbox utilities.
If you are new to or unfamiliar with flexbox, we encourage you to read this CSS-Tricks flexbox guide.
Properties for the Parent
display
I'm a flexbox container!
Item 1
Item 2
Item 3
Item 1
Item 2
Item 3
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
<Box justifyContent="flex-start">…
<Box justifyContent="flex-end">…
<Box justifyContent="center">…
align-items
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
<Box alignItems="flex-start">…
<Box alignItems="flex-end">…
<Box alignItems="center">…
align-content
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 1
Item 2
Item 3
Item 1
Item 2
Item 3
Item 1
Item 2
Item 3
<Box width="100%">Item 1</Box>
<Box flexShrink={1}>Item 2</Box>
<Box flexShrink={0}>Item 3</Box>
align-self
Item 1
Item 2
Item 3
<Box>Item 1</Box>
<Box alignSelf="flex-end">Item 2</Box>
<Box>Item 3</Box>
API
import { flexbox } from '@material-ui/system';
| Import name | Prop | CSS property | Theme key | 
|---|---|---|---|
flexDirection | 
flexDirection | 
flex-direction | 
none | 
flexWrap | 
flexWrap | 
flex-wrap | 
none | 
justifyContent | 
justifyContent | 
justify-content | 
none | 
alignItems | 
alignItems | 
align-items | 
none | 
alignContent | 
alignContent | 
align-content | 
none | 
order | 
order | 
order | 
none | 
flex | 
flex | 
flex | 
none | 
flexGrow | 
flexGrow | 
flex-grow | 
none | 
flexShrink | 
flexShrink | 
flex-shrink | 
none | 
alignSelf | 
alignSelf | 
align-self | 
none |