Skip to content

Background Attachment

Set background attachment behavior

Syntax

visual="bg-attachment:[value]"

Values

ValueCSS OutputDescription
fixedbackground-attachment: fixedFixed background
localbackground-attachment: localLocal scroll
scrollbackground-attachment: scrollScroll with page

Examples

html
<div visual="bg-attachment:fixed">Parallax effect</div>

Preview

Background Attachment

visual="bg-attachment:fixed" - Control how background scrolls

fixed
scroll
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">fixed</div>
  <div space="p:small" visual="bg:primary text:white rounded:small">scroll</div>
</div>