CSS #Background
-
CSS 배경(Background), 문단 속성, 단위Front-end/CSS 2019. 12. 19. 23:19
191219 수업 내용 정리 배경 속성 background : 배경 상위 속성 ▷하위 속성 - 1. background-color : 색상 2. background-image : url(이미지파일 경로) 3. 이미지 반복 속성 : repeat-x (가로로 반복 출력) repeat-y (세로로 반복 출력) no-repeat (반복 안 함) 4. fixed : 이미지 고정 5. background-position : x-position y-position; 이미지 위치 지정 ▷ 가로 위치 값 : left, center, right, 백분율, 길이 세로 위치 값 : top, center, bottom, 백분율, 길이 ex) background: color url() repeat fixed position; →..