Background
Background Attachment
Utilities for controlling the amount of empty space shown before text in a block.
Basic usage
Fixed
Use bg-fixed
to fix the background image relative to the viewport.
<div className="**bg-fixed** ..." style="background-image: url(...)"></div>
Local
Use bg-local
to scroll the background image with the container and the viewport.
<div className="**bg-local** ..." style="background-image: url(...)"></div>
Scroll
Use bg-scroll
to scroll the background image with the viewport, but not with the container.
<div className="**bg-scroll** ..." style="background-image: url(...)"></div>