blob: e94b3eb94aa049b5b2be5cb4d861fe32253beb10 (
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
|
<!DOCTYPE HTML>
<title>Test for dynamic re-pagination of absolutely positioned elements</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<style>
#multicol {
height: 100px;
width: 300px;
background: yellow;
position: relative;
}
#relpos {
position: absolute;
background: aqua;
height: 100px;
width: 90px;
top: 0;
left: 0;
}
#abspos {
position: absolute;
right: 0;
height: 80px;
width: 50px;
background: blue;
}
</style>
<div id="multicol">
<div id="relpos" style="left: 0">
<div id="abspos" style="top: 80px; height: 20px"></div>
</div>
<div id="relpos" style="left: 105px">
<div id="abspos" style="top: 0px; height: 60px"></div>
</div>
<div id="relpos" style="left: 210px; height: 50px">
</div>
</div>
|