HTML태그에서 배경을 지정하는 방법은 배경색(bgcolor)과 배경이미지(background) 속성밖에 사용할 수 없었지만 CSS에서는 보다 다양한 방법으로 배경을 지정할 수 있습니다.
속성 | 설명 | 값 |
background-color | 배경색을 지정할 수 있습니다. | #FFFF80, Ivory |
background-image | 배경이미지를 지정할 수 있습니다. | url(bg.gif) |
background-repeat | 배경이미지의 반복 여부를 지정합니다. | repeat, repeat-x, repeat-y, no-repeat |
background-position | 배경이미지의 위치를 지정합니다. | top left, top center, top right, center left, center center, center right, bottom left, bottom center, bottom right |
background-attachment | 배경이미지의 스크롤 여부를 지정합니다. | scroll, fixed |
※출처 : http://www.homejjang.com/