-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path背景位置案例2.html
61 lines (58 loc) · 2.19 KB
/
背景位置案例2.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>背景位置案例2</title>
</head>
<style>
body {
/* 使用大图作为背景图 */
/* 设置背景图片的位置时使用混合写法注意:第一个是x,第二个是y */
/* background-image: url(D:/学习工作所使用的文档集合/MobileFile/steam背景图.jpg);
background-repeat: no-repeat;
background-position: center 40px; */
/* background-attachment: scroll(滚动)/fixed(不动); */
/* background-attachment: fixed; */
/* 背景样式的混合写法
background:颜色/图片地址/平铺/图像滚动/图片位置 */
background: black url(D:/学习工作所使用的文档集合/MobileFile/steam背景图.jpg) no-repeat fixed center top;
}
</style>
<body>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
<p>大家好我叫胡同学</p>
</body>
</html>