--- title: background slug: Web/CSS/background tags: - CSS - CSS Background - CSS Property - Reference - 'recipe:css-shorthand-property' translation_of: Web/CSS/background ---
CSS background
단축 속성은 색상, 이미지, 원점, 크기, 반복 등 여러 배경 스타일을 한 번에 지정합니다.
background
는 단축 속성으로서 다음의 하위 속성을 포함합니다.
/* <background-color> 사용 */ background: green; /* <bg-image>와 <repeat-style> 사용 */ background: url("test.jpg") repeat-y; /* <box>와 <background-color> 사용 */ background: border-box red; /* 단일 이미지, 중앙 배치 및 크기 조절 */ background: no-repeat center/80% url("../img/image.png");
background
속성을 쉼표로 구분해서 배경 레이어를 여러 개 지정할 수 있습니다.
각 레이어의 구문은 다음과 같습니다.
<bg-size>
값은 <position>
바로 뒤에만 위치할 수 있으며 '/' 문자로 구분해야 합니다. 예를 들면 "center/80%
" 처럼 사용합니다.<box>
값은 2개까지 가지거나 가지지 않을 수 있습니다. 1개 가진다면 {{cssxref("background-origin")}}과 {{cssxref("background-clip")}}을 모두 설정합니다. 2개 가진다면 처음 값은 {{cssxref("background-origin")}}, 두 번째 값은 {{cssxref("background-clip")}}을 설정합니다.<background-color>
값은 마지막 레이어만 가질 수 있습니다.<attachment>
<box>
<background-color>
<bg-image>
<position>
<repeat-style>
<bg-size>
브라우저는 배경 이미지에 대한 어떠한 추가 정보도 접근성 보조 기술에 제공하지 않습니다. 특히 스크린 리더의 경우 배경 이미지의 존재 유무조차 알려주지 않습니다. 이미지가 페이지 목적의 이해에 필수적인 정보를 갖고 있다면 문서에서 구조적으로 설명하는 편이 좋습니다.
{{cssinfo}}
<p class="topbanner"> 작은 별<br/> 반짝 반짝<br/> 작은 별 </p> <p class="warning">문단 하나<p>
.warning { background: pink; } .topbanner { background: url("https://mdn.mozillademos.org/files/11983/starsolid.gif") #99f repeat-y fixed; }
{{EmbedLiveSample("색상_키워드와_이미지를_사용한_배경")}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#the-background', 'background')}} | {{Spec2('CSS3 Backgrounds')}} | The shorthand property has been extended to support multiple backgrounds and the new {{cssxref("background-size")}}, {{cssxref("background-origin")}} and {{cssxref("background-clip")}} properties. |
{{SpecName('CSS2.1', 'colors.html#propdef-background', 'background')}} | {{Spec2('CSS2.1')}} | No significant changes |
{{SpecName('CSS1', '#background', 'background')}} | {{Spec2('CSS1')}} | Initial definition |
{{Compat("css.properties.background")}}
Categoria