**background-image**
* 描述:设置对象的背景图像
* 版本:CSS1 | CSS3 该属性在 CSS3 有修改
* 继承性:无
**语法**
```
background-image:图片值;
```
图片值种类
* none:默认值。不显示背景图像。
* url('URL'):图像的路径。
* inherit:从父元素继承 background-image 属性的设置。
**使用说明**
如果设置了背景图 background-image,默认背景图像位于元素的左上角,并在水平和垂直方向上重复。
如果设置了背景图 background-image,推荐同时设置背景颜色 background-color ,当背景图像不可见时,使背景与文本颜色有一定的对比度。
**代码示例**
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>background-image</title>
<style>
#container{
width: 400px;
height: 400px;
background-image: url(../img/01.jpg);
}
</style>
</head>
<body>
<div id="container">
</div>
</body>
</html>
```
上面我们使用了相对路径的方式确定图片,也可以使用绝对路径及网络资源的方式
网络资源 `background-image: url(https://www.baidu.com/img/bd_logo1.png);`
效果图
![background-image](https://box.kancloud.cn/7e75753d4d6cb15a9108c5fdcde4a39f_402x405.png)
- 空白目录
- 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