Background
-
Learn HTML & CSS. 13.Adding ImagesStudy/HTML & CSS 2016. 12. 16. 12:37
Review what I learned Image 의 크기는 width 와 height 속성으로 조절할 수 있다. background-image 속성을 통해 어떤 태그에든 배경 이미지를 넣을 수 있다. (CSS) 예. background-image: url:("이미지 주소"); background-repeat 속성을 통해 background-image 를 반복하게 할 수 있다. (image가 작을 경우) repeat(기본 값)(x축, y축 반복), repeat-x(x축만 반복), repeat-y(y축만 반복), no-repeat(반복 X) background-position 속성을 통해 반복하지 않는 배경 이미지가 어떻게 위치할 지를 정할 수 있다. 예. background-position: center..