-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat-fly-limb.html
More file actions
75 lines (64 loc) · 1.26 KB
/
float-fly-limb.html
File metadata and controls
75 lines (64 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"></script>
</head>
<style>
body {
min-width: 550px;
font-weight: bold;
font-size: 20px;
margin: 0px;
}
#header, #footer {
background: rgba(29, 27, 27, 0.726);
text-align: center;
height: 60px;
line-height: 60px;
}
#footer {
clear: both;
}
#container {
overflow: hidden;
}
/* #container */
.column {
/* position: relative; */
float: left;
/* text-align: center; */
height: 300px;
line-height: 300px;
}
#center {
width: 100%;
background: rgb(206, 201, 201);
}
#left {
width: 200px;
/* right: 200px; */
margin-left: -100%;
background: rgba(95, 179, 235, 0.972);
}
#right {
width: 150px;
margin-left: -150px;
/* right: -150px; */
background: rgb(231, 105, 2);
}
#inner {
margin-left: 200px;
margin-right: 150px;
}
</style>
<body>
<div id="header">#header</div>
<div id="container">
<div id="center" class="column"><div id="inner">#center</div></div>
<div id="left" class="column">#left</div>
<div id="right" class="column">#right</div>
</div>
<div id="footer">#footer</div>
</body>
</html>