-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>圣诞树</title>
</head>
<style type="text/css">
#contain{
width: 300px;
height: 700px;
background: white;
margin: auto;
}
#top1{
width: 0px;
height: 0px;
border-left: 50px solid white;
border-right: 50px solid white;
border-bottom: 50px solid green;
margin:auto;
}
#mid1{
width: 0px;
height: 0px;
border-left: 100px solid white;
border-right: 100px solid white;
border-bottom: 100px solid green;
margin:auto;
}
#bot1{
width: 0px;
height: 0px;
border-left: 150px solid white;
border-right: 150px solid white;
border-bottom: 150px solid green;
}
#root{
width: 60px;
height: 200px;
background: brown;
float: left;
margin-left: 120px;
}
</style>
<body>
<div id="contain">
<div id="top1"></div>
<div id="mid1"></div>
<div id="bot1"></div>
<div id="root"></div>
</div>
</body>
</html>