-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathviewports.html
More file actions
28 lines (26 loc) · 749 Bytes
/
viewports.html
File metadata and controls
28 lines (26 loc) · 749 Bytes
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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<style>
body {
font-size: 18px;
font-family: system-ui;
}
a {
text-decoration: none;
display: block;
}
a + a {
margin-top: 1em;
}
</style>
</head>
<body>
<a href="viewports/responsive.html">Responsive; width=device-width, initial-scale=1</a>
<a href="viewports/responsive-1100.html">Responsive; width=device-width, initial-scale=1, 1100 min-width</a>
<a href="viewports/unresponsive-1280.html">Unresponsive; 1280 min-width</a>
<a href="viewports/unresponsive-1280-fixed.html">Unresponsive; width=1280</a>
<a href="viewports/unresponsive-1000-initial-scale.html">Unresponsive; width=1000; initial-scale=1.366</a>
</body>
</html>