blob: 137b3487f7de1de680fdfcbfe321d3b50d2a4bf5 (
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
40
41
42
43
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
body {
width: 100%;
height: 100%;
}
div {
position: absolute;
height: 100px;
width: 500px;
}
#bottom {
bottom: 0px;
}
#vertical {
height: 100%;
}
#farbottom {
top: 2000px;
background: red;
}
#abovetop {
top: -123px;
}";
</style>
</head>
<body>
<div id="abovetop"></div>
<div id="vertical"></div>
<div id="top" class="class1 class2"></div>
<div id="bottom"></div>
<div id="farbottom"></div>
</body>
</html>
|