-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
48 lines (48 loc) · 857 Bytes
/
example.html
File metadata and controls
48 lines (48 loc) · 857 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html>
<head>
<style>
.container {
width: 200px;
height: 300px;
padding: 20px;
border: 1px solid black;
margin: 20px auto;
position: relative;
}
.block-container {
width: 60px;
height: 40px;
border: 1px solid gray;
}
.block {
position: absolute;
top: -100px;
left: 50%;
margin-left: -30px;
width: 60px;
height: 40px;
border: 1px solid black;
background-color: blue;
z-index: 1;
}
.bc1 {
margin: 0 auto;
}
.bc2 {
position: absolute;
left: 50%;
bottom: 20px;
margin-left: -30px;
}
</style>
</head>
<body>
<div class="container">
<div class="block"></div>
<div class="block-container bc1"></div>
<div class="block-container bc2"></div>
</div>
<script src="example.dist.js"></script>
</body>
</html>