! 아래의 예들은 실제 background-repeat이 적용된 것이다. (RSS 피드에서는 아래의 스타일 설정이 보이지 않을 수 있음.)
background-repeat 속성의 값들
- repeat - 배경 이미지가 가로(수평)와 세로(수직) 모두 반복된다. repeat는 기본(default)값이다. 즉, 따로 설정하지 않는 이상, 배경 이미지는 기본적으로 반복된다.
background-image: url("이미지 주소");
background-repeat: repeat;
- repeat-x - 배경 이미지가 가로(수평)로만 반복된다.
background-image: url("이미지 주소");
background-repeat: repeat-x;
- repeat-y - 배경 이미지가 세로(수직)로만 반복된다.
background-image: url("이미지 주소");
background-repeat: repeat-y;
- no-repeat - 배경 이미지가 반복되지 않는다.
background-image: url("이미지 주소");
background-repeat: no-repeat;
- inherit - 배경 이미지 반복 여부 설정을 상위(부모) 요소로부터 물려받는다.
! 참고할 만한 글
CSS background-repeat Property (w3schools.com)
background-repeat (Mozilla Developer Network)
! 이 글에 사용된 배경 이미지는 재배포 금지와 출처 표기를 조건으로 상업적인 용도로 사용이 가능한, medialoot 의 무료 아이콘입니다.
댓글 없음:
댓글 쓰기