关于背景我们可以指定的样式有:背景颜色,背景图片,背景平铺,背景位置,背景附着。
背景颜色(color)
语法:
background-color: 颜色值
默认值是transparent,表示无背景。
颜色值:预定义的颜色值/十六进制/RGB代码
例如黑色背景:
background-color: black
或者 background-color: #000000;
或者 background-color: rgb(0,0,0);
这里补充一个知识点:背景透明(css3)
- 语法:
background: rgba(0, 0, 0, 0.3);
- 最后一个参数是alpha 透明度 取值范围 0~1之间。1 表示最强,不透明,0 表示最弱,透明。
- 我们习惯把0.3 的 0 省略掉 这样写 background: rgba(0, 0, 0, .3);
利用背景透明我们可以做出如下效果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.div1 {
width: 200px;
height: 200px;
position: absolute;
}
.div1:hover {
background-color: rgba(0,0,0,.3);
}
</style>
</head>
<body>
<div class="div1"></div>
<div class="div2">
<img src="pikachu.jpg" alt="" width="200" height="200">
</div>
</body>
</html>
背景图片(image)
- 语法:
background-image : none | url (url)
参数 | 作用 |
---|---|
none | 无背景图(默认的) |
url | 使用绝对或相对地址指定背景图像 |
background-image : url(images/demo.png);
- 小技巧: 我们提倡 背景图片后面的地址,url不要加引号。
背景平铺(repeat)
平铺就是一张图片铺满整个版面。例如下面这张皮卡丘图片,他的宽和高都远远小于版面的宽和高,所以会沿着水平和垂直的方向进行平铺,直到铺满整个版面。
在css中,我们可以控制图片的平铺行为。
- 语法:
background-repeat : repeat | no-repeat | repeat-x | repeat-y
参数 | 作用 |
---|---|
repeat | 背景图像在纵向和横向上平铺(默认的) |
no-repeat | 背景图像不平铺 |
repeat-x | 背景图像在横向上平铺 |
repeat-y | 背景图像在纵向平铺 |
最常用的就是no-repeat了吧。如果我们设置了background-repeat : no-repeat
。那么无论版面(容器)多大,都只会渲染一张图片。