CSS 데모: background-position 데모 버튼을 클릭해 보세요!
selector {
    background-position: /* value */
}
/* 두 개 키워드 값 구문: 가로 축 | 세로 축 */
background-position: left top;
background-position: left center;
background-position: left bottom;
background-position: right top;
background-position: right center;
background-position: right bottom;
background-position: center top;
background-position: center center;
background-position: center bottom;

/* 한 개 키워드 값 구문: 가로 축 | 생략한 세로 축은 무조건 center 값 */
background-position: left; /* left center;와 동일 */
background-position: right; /* right center;와 동일 */
background-position: center; /* center center;와 동일 */

/* 퍼센트(%) 값 */
background-position: 0% 0%; /* left center;와 동일 */
background-position: 50% 50%; /* center center;와 동일 */
background-position: 100% 100%; /* right bottom;과 동일 */
background-position: 25% 40%;

/* 길이 값 */
background-position: 10px 25px;
background-position: 2em 5em;
background-position: 2rem 5rem;
background-position: 20vw 40vh;

/* 두 개 값 구문: 가로 축 | 세로 축 */
background-position: left 2em;
background-position: 2em bottom;
background-position: 2em 50%;

/* 한 개 값 구문: 가로 축 | 생략한 세로 축은 무조건 center 값 */
background-position: 0; /* left center;와 동일 */
background-position: 20px; /* 20px center;와 동일 */
background-position: 50%; /* center center;와 동일 */

/* 세 개 값 구문 */
background-position: bottom 10px right;
background-position: top right 10px;

/* 네 개 값 구문 */
background-position: top 15px right 20px;
background-position: right 3em bottom 10px;

/* 글로벌 값 */
background-position: inherit;
background-position: initial;
background-position: revert;
background-position: revert-layer;
background-position: unset;
selector {
    background-position: <가로 축>;
}
/* 한 개 값 구문: 가로 축 | 생략한 세로 축은 무조건 center 값 */
background-position: left; /* left center;와 동일 */
background-position: center; /* center center;와 동일 */
background-position: 0; /* left center;와 동일 */
background-position: 20px; /* 20px center;와 동일 */
background-position: 50%; /* center center;와 동일 */
div {
    background-position: center; /* center center;와 동일 */
    background-repeat: no-repeat;
}
실제 적용된 모습
selector {
    background-position: <가로 축> <세로 축>;
}
background-position: left center;
background-position: 10px 25px;
background-position: 50% 50%;
background-position: 2em 5em;
background-position: 2em bottom;
background-position: center 5em;
background-position: 10px 5em;
div {
    background-position: left center;
    background-repeat: no-repeat;
}
실제 적용된 모습
selector {
    background-position: <키워드> <키워드> <길이 | 퍼센트>;
}
/* 또는 */
selector {
    background-position: <키워드> <길이 | 퍼센트> <키워드>;
}
/* background-position: <키워드> <키워드> <길이 | 퍼센트>; */
background-position: top right 30px; /* <키워드> <키워드> <길이> */
background-position: top right 25%; /* <키워드> <키워드> <퍼센트> */

/* background-position: <키워드> <길이 | 퍼센트> <키워드>; */
background-position: top 30px right; /* <키워드> <길이> <키워드> */
background-position: top 25% right; /* <키워드> <퍼센트> <키워드> */
div {
    background-position: top right 30px;
    background-repeat: no-repeat;
}
실제 적용된 모습
div {
    background-position: top 50% right;
    background-repeat: no-repeat;
}
실제 적용된 모습
background-position: left right 30px;
background-position: right left 30px;
background-position: left left 30px;
background-position: right right 30px;
background-position: right 30px left;
background-position: left 30px right;

background-position: top bottom 30px;
background-position: bottom top 30px;
background-position: top top 30px;
background-position: bottom bottom 30px;
background-position: bottom 30px top;
background-position: top 30px bottom;
selector {
    background-position: <키워드> <길이 | 퍼센트> <키워드> <길이 | 퍼센트>;
}
background-position: top 15px right 20px;
background-position: right 3em bottom 10px;
div {
    background-position: top 15px right 100px;
    background-repeat: no-repeat;
}
실제 적용된 모습
box model
요소 박스의 Box model
데모 적용해 보기: background-origin 데모 버튼을 클릭해 보세요!

caniuse.com에서 더 자세한 정보를 확인해 보세요.