-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
48 lines (47 loc) · 1.25 KB
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
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<title>Parcel</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<style>
.images {
position: relative;
width: 200px;
height: 150px;
}
.images img {
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 150px;
}
.wrap {
display: flex;
flex-wrap: wrap; position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: auto;
z-index: 99999;
}
.rating {
position: absolute;
top: 0;
left: 0;
z-index: 99;
background: white;
color: black;
padding: 3px;
font-size: 16px;
}
</style>
<div class="wrap"></div>
<script src="js/main.js"></script>
</body>
</html>