多个背景图片


1
background: url(images/icon.svg) 0 top no-repeat,url(images/qianbi.svg) 0 30px no-repeat;
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
29
30
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
<style>
.box {
position: relative;
height: 500px;
width: 750px;
border: 1px solid crimson;
background: url("images/bg-2.png") bottom center no-repeat;
}

.bg {
height: 380px;
width: 100%;
background: url("images/bg-1.jpg") top center repeat-y;
}
</style>
</head>

<body>
<div class="box">
<div class="bg"></div>
</div>
</body>

</html>