-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (48 loc) · 1.18 KB
/
index.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
62
63
64
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>New Tab</title>
<style type = "text/css">
html, body {
height: 100%;
margin: 0;
}
</style>
<link rel = "stylesheet" href = "css/style.css">
<script data-main = "js/main" src = "js/lib/require.js"></script>
</head>
<body>
<!--
fixed*
content*
relative*
auto*
-->
<!-- <div class = "container root">
<div class = "view fixedWidth debugHeight" width = "50" height = "50">
I'm 50x50px sized
</div>
</div> -->
<div class = "container root">
<div class = "view fixedWidth debugHeight" style = "width: 2000px; height: 2000px">
I'm oversized
</div>
</div>
<!-- <div class = "container root">
<div class = "view contentWidth debugHeight">
I'm sized by content
</div>
</div>
<div class = "container root">
<div class = "view relativeWidth debugHeight" rWidth = "20%">
I'm my size is automatic
</div>
</div>
<div class = "container root">
<div class = "view autoWidth debugHeight">
I'm my size is automatic
</div>
</div> -->
</body>
</html>