css3第三集 背景属性

背景属性

属性 说明
background-size 背景大小,支持大小调整
background-image 背景图片,支持多背景

代码演示

demo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<head>
<meta charset="utf-8" />
<style>
/*
背景属性
|属性|说明|
|background-size|背景大小,支持大小调整|
|background-image|背景图片,支持多背景|
*/
div {
width: 106px;
height: 2000px;
background: url(./img/bg_flower.gif) no-repeat, url(./img/bg_flower_multi.gif) no-repeat;
/*
background-size: 100% 100%;
background-size: cover;
*/
background-size: contain;
}
</style>
</head>
<body>
<div>
</div>
</body>