background-color
- 요소의 배경 색상
- transparent : 투명함
- background-image가 삽입되어 있다면 그 이미지 뒤에 배경색이 적용된다.
background-image
- 요소의 배경 이미지 삽입
- url(”경로”) : 경로로부터 이미지 가져오기
background-repeat
- 요소의 배경 이미지를 반복
- no-repeat : 반복 없음
- repeat-x : 이미지를 수평으로만 반복
- repeat-y : 이미지를 수직으로만 반복
background-position
background-position: top right;
background-position: center;
background-position: 100px 30px;