forked from WangJia-mm/JavaScript201708
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2-offet.html
More file actions
44 lines (39 loc) · 832 Bytes
/
2-offet.html
File metadata and controls
44 lines (39 loc) · 832 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>珠峰培训</title>
<style>
#outer {
margin: 20px;
width: 300px;
height: 300px;
background: green;
border: 10px solid black;
}
#inner {
margin: 20px;
width: 200px;
height: 200px;
background: red;
border: 10px solid black;
}
#center {
margin: 20px;
width: 100px;
height: 100px;
background: orange;
border: 10px solid black;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner">
<div id="center"></div>
</div>
</div>
<script src="js/utils.js"></script>
<script src="js/2-1.js"></script>
</body>
</html>