CSS/속성 - 배경
background
컴공 윤서혜 학습일기
2021. 1. 12. 12:00
요소의 배경을 설정
속성 값
값 | 의미 | 기본값 |
background-color | 배경 색상 | transparent |
background-image | 하나 이상의 배경 이미지 | none |
background-repeat | 배경 이미지의 반복 | repeat |
background-position | 배경 이미지의 위치 | 0 0 |
background-attachment | 배경 이미지의 스크롤 여부(특성) | scroll |
사용법
background: 색상 이미지경로 반복 위치 스크롤특성;
.box1 {
background: red url("./img/image.jpg") no-repeat left top scroll;
/* 색상 이미지경로 반복 위치 스크롤특성 */
}
.box2{
background: url("./img/image.jpg") no-repeat right 100px;
/* 이미지경로 반복 위치 */
}
.box3 {
background: red;
/* 색상 */
}