Front-end/css
[css] background:
sonzwon
2023. 8. 31. 11:58
# short hand
background: color image repeat attachment position
background-color: | 색이름, RGB, HEX, HSL 등으로 지정 | |
background-image: | url("filepath") | 따옴표 안에 파일경로 지정 |
background-repeat: |
(default) | 기본적으로 배경이미지는 수평&수직으로 반복 |
repeat-x | 수평(horizontally)으로만 반복 | |
repeat-y | 수직(vertically)으로만 반복 | |
no-repeat | 반복하지 않음 | |
background-attachment: |
scroll | 배경이미지가 스크롤됨 |
fixed | 스크롤에 상관없이 배경이미지는 고정됨 | |
background-position: | 배경이미지가 시작되는 위치 지정 top, top right, ... |