-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxx.html
42 lines (37 loc) · 831 Bytes
/
xx.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
/* background: url(天蓝色.jpg);
background-size: 100% 100%; */
background: linear-gradient(45deg, #fbda61, #ff5acd);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.kl {
width: 250px;
height: 250px;
background: url(kl.png);
background-size: 100% 100%;
}
.wx {
width: 250px;
height: 340px;
background: url(wx.jpg);
background-size: 100% 100%;
}
</style>
</head>
<body>
<div>
<div class="kl"></div>
<div class="wx"></div>
</div>
</body>
</html>