**background-color**
* 描述:设置对象的背景颜色
* 版本:CSS1
* 继承性:无
**语法**
```
background-color: 颜色值;
```
颜色值种类
* transparent:默认。背景颜色为透明。
* color name:设置颜色值为颜色名称的背景颜色,比如:red。
* hex number:设置颜色值为十六进制值的背景颜色,比如:#ffff00。
* rgb number:设置颜色值为 rgb 代码的背景颜色,比如:rgb(255,255,0)。
* inherit:继承父元素 background-color 属性的设置。
**使用说明**
当同时定义了背景颜色 background-color 和背景图像 background-image 时,背景图像覆盖在背景颜色之上。
如果设置了背景图像 background-image,推荐同时设置背景颜色 background-color ,当背景图像不可见时,使背景与文本颜色有一定的对比度。
**代码示例**
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>background-color</title>
<style>
#container{
width: 400px;
height: 400px;
background-color:rgb(0, 255, 255);
}
</style>
</head>
<body>
<div id="container">
</div>
</body>
</html>
```
上面我们使用了 rgb 方式确定颜色值,同样可以使用颜色名称及十六进制的方式
使用颜色名称 `background-color:Cyan;`
使用十六进制 `background-color:#00FFFF;`
- 空白目录
- CSS3专业名词
- 复合属性
- 继承性
- CSS3背景
- background
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
- background-origin
- background-clip
- background-size
- CSS边框
- border
- border-width
- border-style
- border-color
- border-top
- border-top-width
- border-top-style
- border-top-color
- border-right
- border-right-width
- border-right-style
- border-right-color
- border-bottom
- border-bottom-width
- border-bottom-style
- border-bottom-color
- border-left
- border-left-width
- border-left-style
- border-left-color
- border-radius
- border-top-left-radius
- border-top-right-radius
- border-bottom-right-radius
- border-bottom-left-radius
- CSS颜色
- color
- opacity
- CSS字体
- font
- font-style
- font-variant
- font-weight
- font-size
- font-family
- font-stretch
- font-size-adjust
- CSS定位
- position
- z-index
- clip