--- title: background-origin slug: Web/CSS/background-origin tags: - CSS - CSS Background - CSS Property - Reference - 'recipe:css-property' translation_of: Web/CSS/background-origin ---
{{CSSRef}}

CSS background-origin 속성은 배경의 원점을 테두리 시작점, 테두리 내부, 안쪽 여백 내부 중 하나로 지정합니다.

{{EmbedInteractiveExample("pages/css/background-origin.html")}}

{{cssxref("background-attachment")}}가 fixed인 경우 background-origin은 무시됩니다.

구문

/* 키워드 값 */
background-origin: border-box;
background-origin: padding-box;
background-origin: content-box;

/* 전역 값 */
background-origin: inherit;
background-origin: initial;
background-origin: unset;

background-origin 속성은 다음 목록의 키워드 중 하나를 선택해 지정할 수 있습니다.

border-box
배경을 테두리 박스에 상대적으로 배치합니다.
padding-box
배경을 안쪽 여백 박스에 상대적으로 배치합니다.
content-box
배경을 콘텐츠 박스에 상대적으로 배치합니다.

형식 정의

{{cssinfo}}

형식 구문

{{csssyntax}}

예제

배경 원점 설정하기

.example {
  border: 10px double;
  padding: 10px;
  background: url('image.jpg');
  background-position: center left;
  background-origin: content-box;
}
#example2 {
  border: 4px solid black;
  padding: 10px;
  background: url('image.gif');
  background-repeat: no-repeat;
  background-origin: border-box;
}
div {
  background-image: url('logo.jpg'), url('mainback.png'); /* Applies two images to the background */
  background-position: top right, 0px 0px;
  background-origin: content-box, padding-box;
}

명세

Specification Status Comment
{{SpecName('CSS3 Backgrounds', '#the-background-origin', 'background-origin')}} {{Spec2('CSS3 Backgrounds')}} Initial definition.

브라우저 호환성

{{Compat("css.properties.background-origin")}}

같이 보기