css background-color 는 배경색을 변경하기 위한 속성입니다. 해당 속성에 입력하는 형식은 6가지 입니다. 첫 번째는 keyword를 입력하는 방법, 두 번째는 16진수를 입력하는 방법, 세번째는 RGB를 입력하는 방법, 네 번째는 HSL로 입력하는 방법, 다섯 번째는 Special keyword 입력하는 방법, 여섯 번째는 Global value를 입력하는 방법 입니다.
keyword
background-color: red;
16진수
background-color: #bbff00;
RGB
background-color: rgb(255 255 128);
HSL
background-color: hsl(50 33% 25%);
Special keyword
background-color: currentcolor;
background-color: transparent;
Global value
background-color: inherit;
background-color: initial;
background-color: revert;
background-color: revert-layer;
background-color: unset;
'IT > css' 카테고리의 다른 글
css id 선택자 (0) | 2023.03.14 |
---|---|
css 요소 선택자 (0) | 2023.03.14 |
css 전체 선택자 (0) | 2023.03.14 |
css 글자색 변경 (0) | 2023.03.05 |
css 사용법 (0) | 2023.03.04 |
댓글