-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathclip.html
52 lines (48 loc) · 1.15 KB
/
clip.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
<!DOCTYPE html>
<html>
<head>
<meta name=viewport content="width=1024">
<style>
.right-menu {
border-style: solid;
border-width: 2px;
background-color: red;
width: 20px;
height: 300px;
position: fixed;
right: 10px;
top: 50px;
}
.bottom-menu {
border-style: solid;
border-width: 2px;
background-color: red;
width: 300px;
height: 30px;
position: fixed;
bottom: 10px;
left: 50px;
}
.wide {
position: absolute;
width: 3000px;
height: 100px;
background-color: grey;
}
</style>
</head>
<body>
<a href="viewport-load.html">Blank page</a>
<br><br>
<a href="viewport-load-wide-content.html">Wide content</a>
<br><br>
<a href="viewport-load-1024-viewport.html">Viewport 1024</a>
<br><br>
<a href="viewport-load-1024-viewport-wide-content.html">Viewport 1024 with wide content</a>
<br><br>
<a href="viewport-load-1024-viewport-wide-content-min-scale.html">Viewport 1024 with wide content min scale</a>
<div class="wide"></div>
<div class="right-menu"></div>
<div class="bottom-menu"></div>
</body>
</html>