background-origin
Anonymous contributor
Published Jun 30, 2021Updated Oct 31, 2023
Contribute to Docs
Specifies the background positioning area of a background.
Syntax
Note: If the background-attachment
is fixed
, then background-origin
will be ignored.
background-origin: <value>;
where <value>
can be one of the following:
content-box
: Relative positioning to the content box.padding-box
: Relative positioning to the padding box.border-box
: Relative positioning to the border box.- Global values:
inherit
,initial
,revert
,unset
Example 1
Set background positioning to the edge of the content box:
.main {border: 5px dashed #4d4d4d;padding: 1rem;background: url(images/background-origin.jpg) no-repeat;background-origin: content-box;}
The resulting output of the code block above is:
Example 2
Set background positioning to the inside edge of the border, respecting its padding:
.main {border: 5px dashed #4d4d4d;padding: 1rem;background: url(images/background-origin.jpg) no-repeat;background-origin: padding-box;}
The resulting output of the code block above is:
Example 3
Set background positioning to the edge of the border:
.main {border: 5px dashed #4d4d4d;padding: 1rem;background: url(images/background-origin.jpg) no-repeat;background-origin: border-box;}
The resulting output of the code block above is:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn CSS on Codecademy
- Career path
Front-End Engineer
Front-end engineers work closely with designers to make websites beautiful, functional, and fast.Includes 34 CoursesWith Professional CertificationBeginner Friendly115 hours - Career path
Full-Stack Engineer
A full-stack engineer can get a project done from start to finish, back-end to front-end.Includes 51 CoursesWith Professional CertificationBeginner Friendly150 hours - Free course
Learn CSS
In this CSS tutorial, you’ll learn how to add CSS to visually transform HTML into eye-catching sites.Beginner Friendly6 hours