Skip to main content

Background Props

Background props control various background-related CSS properties.

Available Props

PropCSS PropertyTheme Key
backgroundbackgroundnone
backgroundImagebackground-imagenone
backgroundSizebackground-sizenone
backgroundPositionbackground-positionnone
backgroundRepeatbackground-repeatnone
backgroundAttachmentbackground-attachmentnone
bgImagebackground-imagenone
bgSizebackground-sizenone
bgPositionbackground-positionnone
bgRepeatbackground-repeatnone
bgAttachmentbackground-attachmentnone

Usage

<Box 
backgroundImage="url('/images/bg.png')"
backgroundSize="cover"
backgroundPosition="center"
backgroundRepeat="no-repeat"
/>

// Or using shorthand props
<Box
bgImage="url('/images/bg.png')"
bgSize="cover"
bgPosition="center"
/>