Skip to main content

Space Props

Space props help control margin, padding, and other spacing-related properties. All values reference tokens from the theme's space scale.

Available Props

PropCSS PropertyTheme Key
mmarginspace
mtmargin-topspace
mrmargin-rightspace
mbmargin-bottomspace
mlmargin-leftspace
mxmargin-xspace
mymargin-yspace
ppaddingspace
ptpadding-topspace
prpadding-rightspace
pbpadding-bottomspace
plpadding-leftspace
pxpadding-xspace
pypadding-yspace

Theme Scale

// Default space scale in theme
{
space: {
0: '0',
1: '0.25rem',
2: '0.5rem',
3: '0.75rem',
4: '1rem',
5: '1.5rem',
6: '2rem',
8: '3rem',
10: '4rem',
12: '6rem',
}
}

Usage

<Box 
m={4} // margin: 1rem
px={3} // padding-left: 0.75rem; padding-right: 0.75rem
mt={5} // margin-top: 1.5rem
/>