blob: c3ff1edaf7ea418d110b5586addf2f33bed18594 (
plain)
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
|
<!doctype html>
<html>
<head>
<title>Header / Footer</title>
<style>
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
#wrapper {
position: relative;
min-height: 100%;
}
#header,
#footer {
height: 50px;
background: #999;
}
#footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
#content {
padding-bottom: 50px;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>
|