CSS 데모: background-repeat 데모 버튼을 클릭해 보세요!
selector {
    background-repeat: /* value */
}
/* 한 개 키워드 값 */
background-repeat: repeat;
background-repeat: repeat-x;
background-repeat: repeat-y;
background-repeat: space;
background-repeat: round;
background-repeat: no-repeat;

/* 두 개 키워드 값 구문: 가로 축 | 세로 축 */
background-repeat: repeat repeat; /* repeat과 동일 */
background-repeat: no-repeat no-repeat; /* no-repeat과 동일 */
background-repeat: repeat no-repeat; /* repeat-x와 동일 */
background-repeat: no-repeat repeat; /* repeat-y와 동일 */
background-repeat: space space; /* space와 동일 */
background-repeat: round round; /* round와 동일 */
background-repeat: repeat space;
background-repeat: round space;
background-repeat: no-repeat round;

/* 글로벌 값 */
background-repeat: inherit;
background-repeat: initial;
background-repeat: revert;
background-repeat: revert-layer;
background-repeat: unset;
<div></div>
div {
    height: 200px;
    background-color: #f3f5f6;
    background-image: url("star.jpg");
    border: 1px solid;
}
background-repeat: repeat;
/* background-repeat: repeat repeat;과 동일 */
실제 적용된 모습
background-repeat: no-repeat;
/* background-repeat: no-repeat no-repeat;과 동일 */
실제 적용된 모습
background-repeat: repeat-x;
/* background-repeat: repeat no-repeat;과 동일 */
실제 적용된 모습
background-repeat: repeat-y;
/* background-repeat: no-repeat repeat;과 동일 */
실제 적용된 모습
background-repeat: space;
/* background-repeat: space space;와 동일 */
실제 적용된 모습
background-repeat: round;
/* background-repeat: round round;와 동일 */
실제 적용된 모습