backgroundorigin
Background-origin is a CSS property that establishes the painting area for an element’s background color and background image. It defines where the background is anchored within the element’s box, relative to the content box, padding box, or border box. The property works alongside other background-related properties such as background-position, background-size, and background-clip to control how backgrounds are displayed.
Values and default: The property accepts border-box, padding-box, and content-box. The default is padding-box, meaning the
Usage notes: background-origin is useful when you want precise control over where a background begins relative
Browser support: background-origin is widely supported across modern browsers as part of standard CSS Backgrounds and
See also: background-clip, background-position, background-size, background-color.