CSS 데모: background-color 데모 버튼을 클릭해 보세요!
/* 키워드 값 */
background-color: currentcolor; /* 현재 요소의 글자색 */

/* 컬러 이름 값 */
background-color: green;
background-color: orange;
background-color: darkslateblue;
background-color: transparent;

/* 16진수(hex) 값 */
background-color: #f00; /* 빨강 */
background-color: #ff6347; /* 토마토색 */
background-color: #ff6347aa; /* 토마토색, 반투명 */

/* rgb() 값 */
background-color: rgb(255, 99, 71, 0.8); /* 토마토 */
background-color: rgba(255, 99, 71, 0.8); /* 토마토, 투명도 */
background-color: rgb(255 99 71 / 0.5); /* 토마토, 50% 투명도 */
background-color: rgba(255 99 71 / 0.3); /* 토마토, 30% 투명도 */
background-color: rgb(255 99 71 / 60%); /* 토마토, 60% 투명도 */
background-color: rgba(255.6 99 71 / 40%); /* 토마토, 40% 투명도 */

/* hsl() 값 */
background-color: hsl(120, 100%, 25%, 0.5); /* 녹색 */
background-color: hsla(120, 100%, 25%, 0.5); /* 녹색, 투명도 */
background-color: hsl(120 100% 25% / 0.5); /* 녹색, 투명도 */
background-color: hsla(120 100% 25% / 50%); /* 녹색, 50% 투명도 */
background-color: hsl(120 100% 25% / 70%); /* 녹색, 70% 투명도 */
background-color: hsla(120.2 100% 25% / 80%); /* 녹색, 80% 투명도 */

/* 글로벌 값 */
background-color: inherit;
background-color: initial;
background-color: unset;
/* 그라디언트 값은 사용할 수 없습니다. */
background-color: linear-gradient(#f69d3c, #3f87a6);
selector {
    background-color: /* value */
}
div {
    border: 10px dashed orangered;
    background-color: yellowgreen;
    width: 100px;
    height: 100px;
}
실제 적용된 모습
div {
    border: 10px dashed orangered;
    background-color: yellowgreen;
    background-image: url("heart.png");
    background-size: 50px;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
}
실제 적용된 모습
div {
    border: 10px dashed orangered;
    background-color: yellowgreen;
    background-image: linear-gradient(to right, rgba(0, 0, 255, 0.5), rgba(255, 255, 255, 0.5));
    width: 100px;
    height: 100px;
}
실제 적용된 모습
데모 적용해 보기: background-clip 데모 버튼을 클릭해 보세요!
<p class="example-1">background-color 속성은 요소의 배경색을 지정합니다.</p>
<p class="example-2">background-color 속성은 요소의 배경색을 지정합니다.</p>
<p class="example-3">background-color 속성은 요소의 배경색을 지정합니다.</p>
<p class="example-4">background-color 속성은 요소의 배경색을 지정합니다.</p>
.example-1 {
    background-color: coral;
    color: white;
}
.example-2 {
    background-color: rgb(153, 204, 255);
    color: rgb(255, 255, 255);
}
.example-3 {
    background-color: #666699;
    color: #ffffff;
}
.example-4 {
    background-color: hsl(300, 100%, 70%);
    color: hsl(0, 0%, 100%);
}
실제 적용된 모습