blob: ed1843f8db3b197c3b4ec75a589e4a1e645c2a91 (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
body {
width: 100%;
height: 100%;
}
div {
position: absolute;
height: 100px;
width: 500px;
}
#below-bottom {
bottom: -200px;
background: red;
}
#above-top {
top: -200px;
background: black;
color: white;
}";
</style>
</head>
<body>
<div id="above-top">Above top</div>
<div id="below-bottom">Far bottom</div>
</body>
</html>
|