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