blob: 47b4cc7bd3b63a312a6559cc0817eb3e3147a1aa (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
#rel {
position: relative;
margin: 2px;
padding: 0;
}
.fixed, .abs {
position: fixed;
margin: 0;
padding: 0;
top: 25px;
left: 25px;
width: 50px;
height: 50px;
background-color: green;
}
#bad {
background-color: red;
}
</style>
</head>
<body>
The green square should completely cover the red square.
<div class="abs" id="bad"></div>
<table>
<caption id="rel"><div class="fixed"></div></caption>
</table>
</body>
</html>
|