Skip to content

Background Repeat

Set background repeat behavior

Syntax

visual="bg-repeat:[value]"

Values

ValueCSS OutputDescription
repeatbackground-repeat: repeatRepeat both axes
no-repeatbackground-repeat: no-repeatNo repeat
repeat-xbackground-repeat: repeat-xRepeat horizontally
repeat-ybackground-repeat: repeat-yRepeat vertically
roundbackground-repeat: roundRound repeat
spacebackground-repeat: spaceSpaced repeat

Examples

html
<div visual="bg-repeat:no-repeat">Single background</div>

Preview

Background Repeat

visual="bg-repeat:no-repeat" - Control background tiling

repeat
no-repeat
repeat-x
View Code
html
<div layout="flex" space="g:medium p:medium" visual="bg:neutral-100 dark:bg:neutral-900 rounded:medium">
  <div space="p:small" visual="bg:primary text:white rounded:small">repeat</div>
  <div space="p:small" visual="bg:primary text:white rounded:small">no-repeat</div>
  <div space="p:small" visual="bg:primary text:white rounded:small">repeat-x</div>
</div>