-
Notifications
You must be signed in to change notification settings - Fork 1
/
indentation.html
84 lines (75 loc) · 1.49 KB
/
indentation.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>4 tab replacer</title>
<style>
body
{
font-size: 80%;
margin-left: 200px;
}
#circle
{
font-size: 4pt;
-webkit-border-radius: 3px;
eborder: solid 1px red;
width: 5px;
height: 5px;
background-color: #88a;
background-color: white;
border: solid 1px #aaa;
}
#line
{
border-left: solid 1px #aaa;
height: 120px;
margin-left: 3px;
}
#line2
{
height: 120px;
background-color: #ccc;
background-color: rgba(83, 180, 255, 0.5);
-webkit-border-radius: 2px;
width: 4px;
}
#line3
{
eborder-right: solid 1px lime;
height: 120px;
width: 1px;
-webkit-box-shadow: rgba(0, 0, 0, 1) 0px 0px 4px;
position: absolute;
}
#line4
{
margin-top: 200px;
eborder-right: solid 1px lime;
height: 120px;
width: 1px;
-webkit-box-shadow: rgba(0, 0, 0, 1) 0px 0px 4px;
position: absolute;
clip: rect(-10px, 100000px, 100000px, 0px);
-webkit-transform: rotate(180deg);
}
</style>
</head>
<body>
<div id='circle'></div><div id='line'></div><div id='circle'></div>
<p>
<div id='line2'></div>
<p>
<div id='line3'></div>
<p>
<div id='line4'></div>
<script>
// Check array constructor
var a = [2, 3, 4]
var b = new Array(a)
// alert(a)
// alert(b)
// alert(a == b)
</script>
</body>
</html>