--- title: background-color slug: Web/CSS/background-color tags: - CSS - CSS Background - CSS Property - Graphics - HTML Colors - HTML Styles - Layout - Reference - Styles - Styling HTML translation_of: Web/CSS/background-color ---
CSS background-color
속성은 요소의 배경 색을 지정합니다.
/* 키워드 값 */ background-color: red; background-color: indigo; /* 16진수 값 */ background-color: #bbff00; /* 완전 불투명 */ background-color: #bf0; /* 완전 불투명 단축 */ background-color: #11ffee00; /* 완전 투명 */ background-color: #1fe0; /* 완전 투명 단축 */ background-color: #11ffeeff; /* 완전 불투명 */ background-color: #1fef; /* 완전 불투명 단축 */ /* RGB 값 */ background-color: rgb(255, 255, 128); /* 완전 불투명 */ background-color: rgba(117, 190, 218, 0.5); /* 50% 불투명도 */ /* HSL 값 */ background-color: hsl(50, 33%, 25%); /* 완전 불투명 */ background-color: hsla(50, 33%, 25%, 0.75); /* 75% 불투명도 */ /* 특별 키워드 값 */ background-color: currentcolor; background-color: transparent; /* 전역 값 */ background-color: inherit; background-color: initial; background-color: unset;
background-color
속성은 하나의 {{cssxref("<color>")}} 값을 사용해 지정합니다.
낮은 시력을 가진 사용자도 페이지의 콘텐츠를 읽을 수 있도록 글자 색과 배경색의 대비를 높게 유지하는 것이 중요합니다.
색상 대비율은 배경색과 투명도를 적용한 글자 색의 밝기를 비교해서 얻어낼 수 있습니다. 현재 웹 콘텐츠 접근성 가이드라인(WCAG)을 만족하려면, 텍스트 콘텐츠는 4.5:1, 제목 등 큰 텍스트는 3:1의 대비율이 필요합니다. 큰 텍스트란 18.66px 이상의 굵은 글씨 혹은 24px 이상의 텍스트로 정의하고 있습니다.
{{cssinfo}}
<div class="exampleone"> Lorem ipsum dolor sit amet, consectetuer </div> <div class="exampletwo"> Lorem ipsum dolor sit amet, consectetuer </div> <div class="examplethree"> Lorem ipsum dolor sit amet, consectetuer </div>
.exampleone { background-color: teal; color: white; } .exampletwo { background-color: rgb(153,102,153); color: rgb(255,255,204); } .examplethree { background-color: #777799; color: #FFFFFF; }
{{EmbedLiveSample("예제","200","150")}}
명세 | 주석 | 피드백 |
---|---|---|
{{ SpecName('CSS3 Backgrounds', '#background-color', 'background-color') }} | Though technically removing the transparent keyword, this doesn't change anything as it has been incorporated as a true {{cssxref("<color>")}} |
Backgrounds Level 3 GitHub issues |
{{ SpecName('CSS2.1', 'colors.html#propdef-background-color', 'background-color') }} | No change. | |
{{ SpecName('CSS1', '#background-color', 'background-color') }} |
{{Compat("css.properties.background-color")}}