-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.html
More file actions
88 lines (79 loc) · 1.44 KB
/
model.html
File metadata and controls
88 lines (79 loc) · 1.44 KB
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
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jason_Page</title>
<style type="text/css">
body{margin:0;padding: 0;}
.wrap{
width:800px;
margin: 0 auto;
}
.main{
width:100%;
overflow: hidden;
background-color: #ccc;
position: relative;
}
.top{
background: blue;
}
.foot{
width: 800px;
height: 100px;
background: red;
margin:0 auto;
}
.left{
width: 200px;
height: 500px;
float:left;
/*left:200px;
top: 100px;*/
background: green;
}
.right{
width: 600px;
float:right;
/*right:200px;
top: 100px;*/
background: orange;
}
.mid_l{
height: 500px;
width:300px;
background: black;
float:left;
}
.mid_r{
width:300px;
background:#332211;
position: absolute;
top:50px;
left:500px;
}
</style>
</head>
<body>
<div class="top">
<span>Welcome to My page.</span>
<p>Welcome to My page.</p>
</div>
<div class="wrap">
<div class="main">
<div class="left">
<p>Main-left!wwwwwwwwwwwwwwwwwwssssssssssssss</p>
</div>
<div class="right">
<div class="mid_l">
<span>right-left!asdasdasdasd</span>
</div>
<div class="mid_r">
<span>right-right!asdasdasdasd</span>
</div>
</div>
</div>
<div class="foot"></div>
</div>
</body>
</html>