css background 속성
[CSS] background 속성 총정리
[CSS] background 속성 총정리
2021.10.30🎯 background 총정리 background의 모든 것을 알아보자! 📝 background 속성 background-color : 배경색 background-image : url("filename.xxx") : 배경 이미지 background-repeat : 배경 이미지 반복 설정 repeat(가로세로 반복), no-repeat(반복 X), repeat-x(가로만 반복), repeat-y(세로만 반복) background-attachment : 배경 이미지를 스크롤과 무관하게 해당 위치에 고정 scroll : 기본값 fixed : 배경 이미지는 고정되고 내용물만 스크롤 background-position : 배경 이미지 상대 위치 설정 background-size : 배경 이미지 크기 조절 cont..