Background 속성 사용하기

by kukie

배경 색상 설정하기

CODE:
background-color: #CCC;

배경 이미지 설정하기

이미지 한개를 고정하여 사용

CODE:
background-image: url(images/bg_01.gif);
background-repeat: no-repeat;
Shorthand:
background: url(images/bg_02.gif) no-repeat;

배경 이미지 설정하기

이미지 한개를 반복하여 사용

CODE:
background-image: url(images/bg_02.gif);
/* repeat 속성은 따로 지정해 주지 않음 */
Shorthand:
background: url(images/bg_02.gif);

배경색과 이미지를 포함한 배경 설정하기

CODE:
background-color: #FFC;
background-image: url(images/bg_02.gif);
Shorthand:
background: #FFC url(images/bg_02.gif) repeat-x;

관련 URL